playpythonpy
Python for Kids
Friday, 11 December 2015
My tables ii (with inputz)
#Multiplication tables
#With input
a = int(input("Enter a number: "))
b = a
c = int(input('Until what number shall I multiply?'))
a < 0
while a < int(c):
a = a + int(b)
print (a)
Newer Post
Older Post
Home