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