Answer to Question #257169 in Python for Aarrya

Question #257169

Write an if/else statement that assigns True to fever if temperature is greater than 98.6; otherwise it assigns False to fever.


1
Expert's answer
2021-10-26T17:28:19-0400
if temperature > 98.6:
    fever = True
else:
    fever = False
    
# more simple option:
# fever = temperature > 98.6

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

Babatunde
16.01.23, 08:00

Yes! Thats an excellent answer.

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS