We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 229f8d6 + 4bff2f1 commit f255606Copy full SHA for f255606
multiplication_table
@@ -0,0 +1,4 @@
1
+num = int(input("Show the multiplication table of? "))
2
+# use for loop to iterate multiplication 10 times
3
+for i in range(1,11):
4
+ print(num,'x',i,'=',num*i)
0 commit comments