print ("inserire la temperatura in celsius")
temperaturacelsius = float (input())
if temperaturacelsius<-275.15:
    print("errore")
else:
    fahrenhait=9/5*temperaturacelsius+32
    kelvin=temperaturacelsius+273.15
    print("fahrenhait=",fahrenhait)
    print("kelvin=",kelvin)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: