We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b7660a commit e8b1ad6Copy full SHA for e8b1ad6
Multiplication Table.py
@@ -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