Advertisement
FelipeNeto2

Tabuada(python)

Nov 22nd, 2019
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. n = int(input("Digite um número:"))
  2.  
  3. for i in range (1,11):
  4.   print("{} x {} = {}".format(n,i,n*i))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement