How you can make simple Multiplication table? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How you can make simple Multiplication table?

Help!

23rd Oct 2020, 7:52 AM
Saif Hatric
Saif Hatric - avatar
4 Answers
+ 5
for i in range(1, 13): for j in range(1, 13): print(i, "x", j, "=", i*j)
23rd Oct 2020, 8:18 AM
David Ashton
David Ashton - avatar
+ 3
See this it will help you. I have used loops for printing tables https://code.sololearn.com/cf5q758mSXSC/?ref=app
23rd Oct 2020, 8:11 AM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 2
You can use loops
23rd Oct 2020, 8:08 AM
你知道規則,我也是
你知道規則,我也是 - avatar
+ 2
Thank you
23rd Oct 2020, 8:42 AM
Saif Hatric
Saif Hatric - avatar