Given N = 6 print a staircase like: # ## ### #### ##### ###### # Complete the function below. def StairCase(n): for i in xrange(n, 0, -1): print (' ' * (i-1) + '#' * (n - i + 1))
Last updated 4 years ago
Was this helpful?