Objective
Develop a Python program to prompt the user for a number and then display a rectangle 3 columns wide and 5 rows tall using that digit. For example:
Enter a digit: 3
333
3 3
3 3
3 3
333
Example Python Exercise
Show Python Code
# Prompt the user to enter a digit
digit = input("Enter a digit: ")
# Display the rectangle using the entered digit
print(digit * 3)
print(digit + " " + digit)
print(digit + " " + digit)
print(digit + " " + digit)
print(digit * 3)
Output
Enter a digit: 3
333
3 3
3 3
3 3
333
Share this Python Exercise