Untitled
unknown
python
2 years ago
392 B
2
Indexable
Never
nome, saturacao = input('Digite o nome do apciente seguido da Saturação: ').split() msg = 'Alta' ms2 = 'Internar' var = '#' if int(saturacao) < 90: print(nome, ms2) else: print(nome, msg) while nome and saturacao: nome, saturacao = input('Digite o nome do apciente seguido da Saturação: ').split() if int(saturacao) < 90: print(nome, ms2) else: print(nome, msg)