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 โEโ. In the previous tutorials, I have shown you the pattern for the letter โDโ, letter C, letter A, and letter B. Here itโs now time for Pattern E.
Master the basics of data analysis in Python. Expand your skillset by learning scientific computing with numpy.
Take the course on Introduction to Python on DataCamp here https://bit.ly/datacamp-intro-to-python
You can also watch the video on YouTube here
Print Pattern E โ Code Visualization
Task:
Python program to print the pattern of letter โEโ
Approach:
- Read an input integer for asking the size of the letter using
input() - Check if the entered number is greater than 8,
- if yes, call the function
print_pattern() - else, show a message to enter a number which is greater or equal to 8
- if yes, call the function
- print_pattern()
- here we only do two things, print star(
*) and print space(), just writing conditions so the pattern of*โs andโs will display the pattern โEโ - following are 3 conditions for printing *โs
We have 2 loops, outer loop() for rows and inner loop for columns. -
12345# Outer for loopfor row in range(n):# Inner for loopfor column in range(n - 2):
- Print first and last row and middle row
-
1((row == 0 or row == n-1 or row == n//2 )
-
- Print first column
-
1column == 0
-
- Print first and last row and middle row
- print
in remaining all cases.
- here we only do two things, print star(
Program:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
__author__ = 'Avinash' # Python3 program to print alphabet E pattern # ********* # * # * # * # ********* # * # * # ********* def print_pattern(n): # Outer for loop for number of rows for row in range(n): # Inner for loop columns for column in range(n): # prints first and last and middle row if ((row == 0 or row == n - 1 or row == n // 2) or # prints first column column == 0): 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) |
Output:
