Code:

011_celcius_to_fahrenheit.py

celcius = 28

farhrenheit = ((9 / 5) * celcius) + 32

print(f"Celcius {celcius} is {farhrenheit} Farhrenheit")