1.7 Conversion of Temperature

1.7 Conversion of Temperature#

Problem Statement:#

Convert a temperature of 20°C to Kelvin.

## Solution:

# Given value
T_Celsius = 20  # Temperature in Celsius

# Conversion to Kelvin
T_Kelvin = T_Celsius + 273.15

# Output the result
print(f"Temperature in Kelvin: {T_Kelvin} K")
Temperature in Kelvin: 293.15 K