Untitled
Anonymous
python
10/27/2024 6:09 AM
164 B
18
Indexable
n=int(input("enter height : "))
for i in range(0,n+1):
print(" ")
for j in range(0,i):
print('*',end=' ')Editor is loading...
Leave a Comment
n=int(input("enter height : "))
for i in range(0,n+1):
print(" ")
for j in range(0,i):
print('*',end=' ')