zjfz-2019-s439462/intro/Task104.py

4 lines
103 B
Python
Raw Normal View History

2020-01-12 14:35:16 +01:00
def fahrenheit(x: float) -> float:
if x < -273.15:
return -459.67
return x * (9/5) + 32