90.1k views
3 votes
Write a conditional that assigns true to the variable fever if the variable temperature is greater than 98.6.

1 Answer

3 votes
if temperature > 98.6: fever = True
User Umlum
by
7.4k points