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))