Code (4)
Code (4)
if choice == "celsius":
tempci = int(input("Please enter the temperature (in degree celsius) : "))
tempc = float(tempci)
tempk = tempc + 273.16
tempf = (tempc * (9/5)) + 32
print(f"The given temperature is {tempk} Kelvin or {tempf} Fahrenheit ")