Write an if/else statement that assigns True to fever if temperature is greater than 98.6; otherwise it assigns False to fever.
if temperature > 98.6: fever = True else: fever = False # more simple option: # fever = temperature > 98.6
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Yes! Thats an excellent answer.
Comments
Yes! Thats an excellent answer.
Leave a comment