diff --git a/celsius to fahrenheit b/celsius to fahrenheit new file mode 100644 index 0000000..4af8b78 --- /dev/null +++ b/celsius to fahrenheit @@ -0,0 +1,10 @@ +# Temperature in Fahrenheit degree +fahrenheit = 104 + +# Converting the temperature to +# fehrenheit +celsius = (fahrenheit-32)/1.8 + +# printing the result +print('%.2f Fahrenheit is equivalent to: %.2f Celsius' + % (fahrenheit ,celsius))