Created
June 10, 2017 01:45
-
-
Save MiguelMachado-dev/41b1c6b70b9051755970feb63388b4ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('{:=^30}'.format('Tabuada')) | |
while True: | |
x = int(input('A tabuada de qual número deseja saber? ')) | |
y = int(input('Ate qual número deseja saber a tabuada do número inserido previamente? ')) | |
for i in range(y): | |
print('{} x {} = {}'.format(i, x, i * x)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment