From 7cd0ad3e60efeb788c7611bdc3eb71a25b47738f Mon Sep 17 00:00:00 2001 From: nutanaarohi123 Date: Fri, 9 Oct 2020 16:05:49 +0530 Subject: [PATCH] Added Fahrenheit to Kelvin Converter Python Code --- FahrenheitToKelvin.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 FahrenheitToKelvin.py diff --git a/FahrenheitToKelvin.py b/FahrenheitToKelvin.py new file mode 100644 index 0000000..51aac22 --- /dev/null +++ b/FahrenheitToKelvin.py @@ -0,0 +1,7 @@ +""" + Python Program to convert temperature in fahrenheit to kelvin + Input : fahrenheit = 100 + Output : Kelvin = 311.278 +""" +Kelvin = 273.5 + ((fahrenheit - 32.0) * (5.0/9.0)) +