Friday, 11 December 2015

22. My tables

#Multiplication tables
#x 13, up to 100

a = 0

while a < 100:
    a = a + 13
    print (a)

#Modify these 2 numbers.
#If you modify 0, what happens?