diff --git a/Celsius to Fahrenheit conversion b/Celsius to Fahrenheit conversion new file mode 100644 index 0000000..44b2d84 --- /dev/null +++ b/Celsius to Fahrenheit conversion @@ -0,0 +1,8 @@ +#This is a python3 code. For Celsius to Fahrenheit conversion. + +def temp(c): + f = (9 / 5) * c + 32 + return (print(f)) +c=int(input('enter temp in Celsius !')) +print("Fahrenheit Temperature") +temp(c)