top of page
  • Subham Das

#4 Inverted Right Triangle


n=int(input("Enter Number :"))


#Pattern 4 print('(04)') i = 1 while i <= n+1 : j = 1 while j <= n+1-i : print('*', end=" ") j += 1 i += 1 print() print()



15 views0 comments

Recent Posts

See All
logo12.PNG
bottom of page