100%(1)1 out of 1 people found this document helpful
This preview shows page 1 out of 1 page.
The preview shows page 1 - 1 out of 1 page.
# LetterE.py - This program prints the letter E with 3 asterisks# across and 5 asterisks down.# Input: None# Output: Prints the letter ENUM_ACROSS = 3 # Number of asterisks to print acrossNUM_DOWN = 5 # Numebr of asterisks to drint downfor row in range(1, NUM_DOWN + 1):for column in range(1, NUM_ACROSS + 1):