Pattern 03 - Python Language
23-09-2020
117 times
Write a python program to print the pattern shown in diagram.
n=int(input("Enter the no of row : "))
for r in range(1,n+1):
for c in range(1,r+1):
print("* ",end='')
print()
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.