Unlimited Tries Write an if statement that assigns true to the variable fever if the variable temperature is greater than 98.6.
a) if temperature > 98.6: fever = True
b) if temperature < 98.6: fever = True
c) if temperature = 98.6: fever = True
d) if temperature >= 98.6: fever = True

Q&A Education