0
How you can make simple Multiplication table?
Help!
4 Respostas
+ 5
for i in range(1, 13):
for j in range(1, 13):
print(i, "x", j, "=", i*j)
+ 3
See this it will help you.
I have used loops for printing tables
https://code.sololearn.com/cf5q758mSXSC/?ref=app
+ 2
You can use loops
+ 2
Thank you