zjfz-2019-s439462/intro/Task104.py
2020-01-12 14:35:16 +01:00

4 lines
103 B
Python

def fahrenheit(x: float) -> float:
if x < -273.15:
return -459.67
return x * (9/5) + 32