Advertisement
informaticage

Tavole pitagoriche da 1 a 10 comprese

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