Untitled
unknown
plain_text
a year ago
294 B
9
Indexable
#desafio 1
contagem = 0
while contagem <= 120:
print(contagem)
contagem = contagem + 1
#desafio 2
senha = ''
while senha != '12345':
senha = input("Digite a senha: ")
else: print ("senha correta")
#desafio 3
contagem = 100
while contagem != 0:
print(contagem)
contagem = contagem - 1Editor is loading...
Leave a Comment