Created
April 23, 2020 00:27
-
-
Save steffanydev/c634082940900a9d20d595fc3c2ff9c2 to your computer and use it in GitHub Desktop.
Crie um sistema que gere a tabuada de um número que o usuário escolher utilizando a estrutura de repetição FOR
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
| numero = int(input("Informe um número: ")) | |
| for tabuada in range(0, 11): | |
| print('{} X {} = {}'.format(numero, tabuada, numero * tabuada)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment