Skip to content

Instantly share code, notes, and snippets.

@franciscojsc
Created October 24, 2017 14:29
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franciscojsc/6fd936f142fea98d9a5ab1ca48b97f0a to your computer and use it in GitHub Desktop.
Save franciscojsc/6fd936f142fea98d9a5ab1ca48b97f0a to your computer and use it in GitHub Desktop.
TABUADA EM PYTHON
valor = int(input('Entre com um número para saber a tabuada: '))
aux = 0
print('*' * 18)
print('Tabuada de {}'.format(valor))
print('*' * 18)
while(aux <= 10):
print('{0} X {1} = {2}'.format(aux, valor, (aux * valor)))
aux = aux + 1
@GANDAFRANCISCOPAH
Copy link

GANDA FRANCISCO PAH AJUDOU ME IMENSO NOTRABALHO DO BOB GORDAO

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment