Skip to content

Instantly share code, notes, and snippets.

@steffanydev
Created April 23, 2020 00:27
Show Gist options
  • Select an option

  • Save steffanydev/c634082940900a9d20d595fc3c2ff9c2 to your computer and use it in GitHub Desktop.

Select an option

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
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