This is my code:
def temp(c):
    f = c * 9/5 + 32
    if c <= -273:
        print("not possible")
    else:
        return f
print(temp(-273))
It is outputting the correct answer but I can't understand why it's also printing None with it whenever the if condition is fulfilled.
 
     
     
    