Skip to content

Instantly share code, notes, and snippets.

View Aadrian0's full-sized avatar
🎯
Focusing

Adriano Aadrian0

🎯
Focusing
  • Brasil
View GitHub Profile
@Aadrian0
Aadrian0 / tabuadaestranha.py
Last active October 8, 2021 21:15
Tabuada de qualquer número até 10 com While.
from time import sleep
while True:
lol = input('Digite o número que deseja ver a tabuada: ')
if lol.isalpha():
continue
tabu = int(lol)
v1t = tabu * 1
v2t = tabu * 2