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

Sample Solution:
Python Code:
# Initialize an empty string named 'result_str'
result_str = ""
# Iterate through rows from 0 to 6 using the range function
for row in range(0, 7):
# Iterate 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 ((row == 0 or row == 3) and column > 0 and column < 5) or ((column == 5 or column == 1) and (row == 1 or row == 2))):
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 'P' pattern with a filled upper half and a vertical line on the left.
- Write a Python program to generate 'P' using nested loops and conditionals to manage the curve and stem.
- Write a Python program to construct the pattern for 'P' by controlling the output for the curved top and straight bottom.
- Write a Python program to design 'P' using string manipulation to ensure the top loop is closed and the vertical line is continuous.
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 'O'.
Next: Write a Python program to print alphabet pattern 'R'.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.