Advertisement
BenTibnam

Multiplication Table

Feb 18th, 2021
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. for i in range(1, 13):
  2.     for j in range(1, 13):
  3.         print(str(j * i) + " ", end=" ")
  4.     print("")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement