zjfz-2019-s393639/intro/Task104.py
Aleksander Misztal 4481e139c5 Tasks solved
2020-01-12 15:40:05 +01:00

5 lines
98 B
Python

def farenheit(x):
if x< -273.15:
return -459.67
else:
return(x * 9/5) + 32