From 8db884543373a5000f63eb199454c6ae5300445e Mon Sep 17 00:00:00 2001 From: sumit120398 <72256303+sumit120398@users.noreply.github.com> Date: Fri, 2 Oct 2020 17:41:40 +0530 Subject: [PATCH] Celsius to fahrenheit Python program to convert Celsius to Fahrenheit --- Python program to convert Celsius to Fahrenheit | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Python program to convert Celsius to Fahrenheit diff --git a/Python program to convert Celsius to Fahrenheit b/Python program to convert Celsius to Fahrenheit new file mode 100644 index 0000000..5c5071b --- /dev/null +++ b/Python program to convert Celsius to Fahrenheit @@ -0,0 +1,9 @@ +celsius = float(input('Enter temperature in Celsius: ')) + + + + + +fahrenheit = (celsius * 1.8) + 32 + +print('%0.1f Celsius is equal to %0.1f degree Fahrenheit'%(celsius,fahrenheit))