-3
Sorry my ignorance I’m starting to learn python now, my doubt is: How can I generate a result in each iteration of a while.
valor= input('digite o numero desejado:')
contador = 0
while contador <=100:
print(contador, '% de', valor,' é igual a:', **'RESULTADO'**)
contador= contador + 1
I want to find a function or command that print the term RESULT for all values from 1 to 100.
Helped a lot, I managed to finish my project and still learned something new, I don’t know how to thank.
– Vinicius Sartori