zjfz-2019-s393639/intro/Task104.py

5 lines
99 B
Python
Raw Normal View History

2020-01-12 15:52:44 +01:00
def fahrenheit(x):
2020-01-12 15:40:05 +01:00
if x< -273.15:
return -459.67
else:
return(x * 9/5) + 32