Learning to Program in Python for Kids

of all ages  by Philip M Russell


Lets just turn that for loop around.


count = 11

months =['January','February','March','April','May','June','July','August','September','October','November','December']

for count in range(11,-1,-1):

 print (months [count])


Back to Exercise