×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Pattern 01 Pattern 03
Pattern 02 - Python Language
1217    Arnab De    23/09/2020

Write a python program to print the pattern shown in diagram.

softetechnologies
n=int(input("Enter the no of row : "))
for r in range(1,n+1):
    for s in range(1,n-r+1):
        print(" ",end='') 
    for c in range(1,r+1):
        print("*",end='')
    print()

Write a python program to print the pattern shown in diagram.

python pattern print
softetechnologies

Just change the "*" to the corresponding row number.

n=int(input("Enter the no of row : "))
for r in range(1,n+1):
    for s in range(1,n-r+1):
        print(" ",end='') 
    for c in range(1,r+1):
        print(r,end='')
    print()
	

Write a python program to print the pattern shown in diagram.

python pattern print
softetechnologies

Just change the "*" to the corresponding column number.

n=int(input("Enter the no of row : "))
for r in range(1,n+1):
    for s in range(1,n-r+1):
        print(" ",end='') 
    for c in range(1,r+1):
        print(c,end='')
    print()
	
Pattern 01 Pattern 03
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Swami Vivekananda
Education is not the amount of information that is put into your brain and runs riot there, undigest
Swami Vivekananda
2043
60.53
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     44695
01/01/2018     36866
25/06/2018     36808
28/06/2017     34888
02/08/2017     33478
01/08/2017     27832
06/07/2017     27605
15/05/2017     27175
14/07/2017     22932
11/09/2018     21654
softetechnologies