207k views
3 votes
Python question: Write a conditional that assigns True to fever if temperature is greater than 98.6.? My code is: if temperature > 98.6:

User Zephyrus
by
8.1k points

1 Answer

4 votes
if temperature > 98.6:
fever = True

User Brandon Barney
by
7.7k points

Related questions