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