• + 0 comments

    Python3:

    def staircase(n):
        for x in range(1, n + 1):
            print(("#"*x).rjust(n))