Print alphabet pattern ‘H’ in Python 13 July 20238 July 2023 by Souradeep Chatterjee To print the alphabet pattern ‘H’ in Python Code: for row in range(7): for col in range(5): if col == 0 or col == 4: print('*', end=' ') elif (row == 3) and (col != 0 and col != 4): print('*', end=' ') else: print(' ', end=' ') print()