5 lines
99 B
Python
5 lines
99 B
Python
def fahrenheit(x):
|
|
if x< -273.15:
|
|
return -459.67
|
|
else:
|
|
return(x * 9/5) + 32 |