Files
cursopython2023/aula40.py
2022-10-28 07:19:17 -03:00

9 lines
176 B
Python

""" Calculadora com while """
while True:
print('nummmmm')
#########
sair = input('Quer sair? [s]im: ').lower().startswith('s')
if sair is True:
break