×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Use of capitalize() and split() use of replace() function
Pattern 04 - Python Language
2344    Arnab De    06/01/2021

Write a program in python language to create the following pattern.

softetechnologies
n=int(input("Enter the no of row : "))
for r in range(1,n+1):
    p=r
    fl=0
    for s in range(1,n-r+1):
        print(" ",end='') 
    for c in range(1,(2*r)):
        print(p,end='')
        if p==1:
            fl=1
        if fl==1:
            p=p+1
        else:
            p=p-1
        
    print()
softetechnologies
Use of capitalize() and split() use of replace() function
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
What makes one man great and another weak and low is shraddha (concentration).
Swami Vivekananda
2178
81.71
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54291
25/06/2018     45254
01/01/2018     43798
28/06/2017     41312
02/08/2017     40384
01/08/2017     34379
06/07/2017     34171
15/05/2017     33426
11/09/2018     30560
14/07/2017     29973
softetechnologies