niz=[0]*10 #Automatsko popunjavanje niza for i in range (0,10): niz[i]=i+1 print("ispis niza") for i in range (9,-1,-1): print(niz[i])