• + 0 comments
    def staircase(n):
        for i in range(1, n + 1):
            str = " " * (n - i) + "#" * i
            print(str)