first group of challenges
This commit is contained in:
4
challenges35-44/challenge-039.py
Normal file
4
challenges35-44/challenge-039.py
Normal file
@@ -0,0 +1,4 @@
|
||||
number = int(input('Enter number between 1 and 12 : '))
|
||||
for i in range(1, 13):
|
||||
result = i * number
|
||||
print('{0} x {1} is {2}'.format(i, number, result))
|
||||
Reference in New Issue
Block a user