What is the opposite of for a1 in range(1,30): for a3 in range (29-a1, 0, -1): print(" ", end ='') for a2 in range(1, a1+1): print("*", end=' ')



Answer :

Other Questions