Python program to convert celsius to kelvin
In this python programming guide, we are going to learn
-
program to convert temperature from celsius to kelvin in python
Program to convert temperature from Celsius to Kelvin in Python
The python program to convert celsius to kelvin is as follows:
# Owner : TutorialsInhand Author : Devjeet Roy
c = float(input("Enter temperature in C-Scale: "))
k = c + 273.15
print("The tempeature in K-Scale:",round(k,2))
The output of python program to convert celsius to kelvin is as follows:
PS C:\Users\DEVJEET\Desktop\tutorialsInHand> python code.py
Enter temperature in C-Scale: 123
The tempeature in K-Scale: 396.15
Few important tips about this program
1. We take the user input and convert it to float data type.
2. Then we use the formula, K = C + 273.15 to find the temperature in K Scale.
3. Lastly, we round off the answer upto 2 decimal places.
Write a python program to convert celsius to kelvin snapshot:
Would you like to see your article here on tutorialsinhand.
Join
Write4Us program by tutorialsinhand.com
About the Author
Devjeet Roy
Full Stack Web Developer & Data Science Enthusiast
Page Views :
Published Date :
Nov 24,2021