+ 16
Cool celsius to Fahrenheit converter coded by me
Have a look, and of course an upvote https://code.sololearn.com/cEdKI9giKgtU/?ref=app
4 Respuestas
+ 1
Pretty Cool!
+ 1
print("Enter 'x' for exit."); fah = input("Enter Temperature in Fahrenheit: "); if fah == 'x': exit(); else: fahrenheit = float(fah); celsius = (fahrenheit-32)/1.8; print("Temperature in Celsius =",celsius);
- 1
I made one too...
https://code.sololearn.com/c25fgpg9m4Oj/?ref=app
- 1
Pretty cool program Ghaffaru.