Advertisement
simeonshopov

Multiplication table

Oct 18th, 2019
148
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, 11):
  2.   for j in range(1, 11):
  3.     result = i * j
  4.     print(f"{i} * {j} = {result}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement