Digit 9
size = int(input()) for i in range(size*2-1): if size == 1: print("*") elif i % (size-1) == 0: print("* "*size) elif i < size: print("* "+" "*(size-2)+"*") else: print(" "*(size-1)+"*")
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment