Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cálculo de tabuada em python #7

Open
EndPoint-dev-Brazil opened this issue Dec 20, 2022 · 0 comments
Open

Cálculo de tabuada em python #7

EndPoint-dev-Brazil opened this issue Dec 20, 2022 · 0 comments

Comments

@EndPoint-dev-Brazil
Copy link
Owner

Código para uma boa aplicação em programas facilitadores de estudo para alunos da escola pública de forma simples teriam acesso ao estudo utilizando uma aplicação de tabuada.

n = int(input('Digite Valor para ver Tabuada:'))
print ('=' *12)
print ('{} x {:2} = {}' .format (n, 1, n*1))
print ('{} x {:2} = {}' .format (n, 2, n*2))
print ('{} x {:2} = {}' .format (n, 3, n*3))
print ('{} x {:2} = {}' .format (n, 4, n*4))
print ('{} x {:2} = {}' .format (n, 5, n*5))
print ('{} x {:2} = {}' .format (n, 6, n*6))
print ('{} x {:2} = {}' .format (n, 7, n*7))
print ('{} x {:2} = {}' .format (n, 8, n*8))
print ('{} x {:2} = {}' .format (n, 9, n*9))
print ('{} x {:2} = {}' .format (n, 10, n*10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant