Skip to content

Commit e8b1ad6

Browse files
authored
multi table
1 parent 5b7660a commit e8b1ad6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Multiplication Table.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Multiplication table (from 1 to 10) in Python
2+
3+
num = 12
4+
5+
# To take input from the user
6+
# num = int(input("Display multiplication table of? "))
7+
8+
# Iterate 10 times from i = 1 to 10
9+
for i in range(1, 11):
10+
print(num, 'x', i, '=', num*i)

0 commit comments

Comments
 (0)