Hello everyone! Welcome back to programminginpython.com. I am continuing with this pattern programming series, here I will tell you how to print the pattern of the letter H. In the previous tutorials, I have shown you the patterns of letters A to G. Here it’s now time for Pattern H. You can check the complete series on letter patterns here.
Need help with your Python class assignments? Check out this guide for tips and tricks on how to get started. From basic syntax to more advanced concepts, we’ll help you out every step of the way. More help on Cwassignments.
__author__ = 'Avinash'
# Python3 program to print alphabet pattern H
# * *
# * *
# * *
# * * * * * *
# * *
# * *
# * *
def print_pattern(n):
# Outer for loop for number of rows
for rows in range(n):
# Inner for loop columns
for columns in range(n):
# prints first and last column
if ((columns == 0 or columns == n-1) or
# prints middle row
(rows == n // 2)
):
print("*", end=" ")
else:
print(" ", end=" ")
print()
size = int(input("Enter size: \t"))
if size < 8:
print("Enter a size greater than 8")
else:
print_pattern(size)