Python Exercise: Print alphabet pattern U
28. Alphabet Pattern 'U'
Write a Python program to print the alphabet pattern 'U'.
Pictorial Presentation:

Sample Solution:
Python Code:
# Initialize an empty string named 'result_str'
result_str = ""
# Loop through rows from 0 to 6 using the range function
for row in range(0, 7):
# Loop through columns from 0 to 6 using the range function
for column in range(0, 7):
# Check conditions to determine whether to place '*' or ' ' in the result string
# If conditions are met, place '*' in specific positions based on row and column values
if (((column == 1 or column == 5) and row != 6) or (row == 6 and column > 1 and column < 5)):
result_str = result_str + "*" # Append '*' to the 'result_str'
else:
result_str = result_str + " " # Append space (' ') to the 'result_str'
result_str = result_str + "\n" # Add a newline character after each row in 'result_str'
# Print the final 'result_str' containing the pattern
print(result_str)
Sample Output:
* * * * * * * * * * * * ***
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Python program to print the letter 'U' pattern with vertical sides and a curved or straight bottom using loops.
- Write a Python program to generate 'U' ensuring that the bottom row is shorter to mimic a rounded base.
- Write a Python program to construct the pattern for 'U' using conditionals to print side boundaries and a bottom line.
- Write a Python program to create a scalable 'U' pattern that adjusts the number of spaces between vertical sides based on input size.
Python Code Editor :
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to print alphabet pattern 'T'.
Next: Write a Python program to print alphabet pattern 'X'.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.