• + 0 comments

    Easier with Python 3 def staircase(n): for i in range(n): print(" "(n-i-1)+"#"(i+1))