• + 0 comments
    1. n = int(input())
    2. for i in range(1,n+1):
    3. s="#"*i
    4. print((n-i)*" "+s)
    5. in python