diff --git a/centigrade b/centigrade new file mode 100644 index 0000000..72910de --- /dev/null +++ b/centigrade @@ -0,0 +1,3 @@ +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) )