diff --git a/celcius_to_farenheit_converter.py b/celcius_to_farenheit_converter.py new file mode 100644 index 00000000..9bcc3707 --- /dev/null +++ b/celcius_to_farenheit_converter.py @@ -0,0 +1,3 @@ +celsius = float(input("Enter temperature in celsius: ")) +fahrenheit = (celsius * 9/5) + 32 +print('%.2f Celsius is: %0.2f Fahrenheit' %(celsius, fahrenheit))