Olá pessoal, hoje vamos realizar a codificação da tabuada em Python, irei utilizar a IDE PyCharm para nosso exemplo.
Crie um script Python com o nome tabuada.py.
Digite o código abaixo.
This file contains 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
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 |
Pronto, o resultado será exibido como esperado :)