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 โDโ. In the previous tutorials, I have shown you the pattern for the letter โCโ, Letter A, and Letter B. Here itโs now time for Pattern D.
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.
Task:
Python program to print the pattern of letter โDโ
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 โDโ - 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
-
1((row == 0 or row == n-1) and (0 < column < n-3))
-
- Print first column
-
1column == 0
-
- Print last column
-
1column == n - 3 and (row != 0 and row != n - 1)
-
- Print first and last 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 |
__author__ = 'Avinash' # Python3 program to print alphabet pattern D 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 - 2): # prints first and last row if ( ((row == 0 or row == n-1) and (0 < column < n-3)) or # prints first column column == 0 or # prints last column column == n - 3 and (row != 0 and row != n - 1) ): print("*", end=" ") else: print(" ", end="") print() # Size of the letter num = int(input("Enter the size \t")) if num < 8: print("Enter a number atleast 8") else: print_pattern(num) |
Output:


Print Pattern D โ Code Visualization
Course Suggestion
Machine Learning everywhere! So I strongly suggest you to take the course below.
Course: Machine Learning Adv: Support Vector Machines (SVM) Python
Feel free to look at other letters in this pattern series here https://www.youtube.com/playlist?list=PLrKr3rQwMgsiLQ__JeCz_Vvr5pbk6pILT