bl00dt3ars

02. Multiplication Table

Nov 7th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. for i in range(1, 11):
  2.     for j in range(1, 11):
  3.         print(f"{i} * {j} = {i * j}")
Add Comment
Please, Sign In to add comment