4 lines
103 B
Python
4 lines
103 B
Python
def fahrenheit(x: float) -> float:
|
|
if x < -273.15:
|
|
return -459.67
|
|
return x * (9/5) + 32 |