write a program tha takes the temprature of a patient in fahrenheit as input and prints "normal" if the temtature is equal to 98.6
print('To exit enter q!')
while True:
temp = input('Enter temperature: ')
if temp == 'q':
break
elif temp == '98.6':
print('normal')
Comments
Leave a comment