We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 966b7ec + 8db8845 commit 79c78fcCopy full SHA for 79c78fc
Python program to convert Celsius to Fahrenheit
@@ -0,0 +1,9 @@
1
+celsius = float(input('Enter temperature in Celsius: '))
2
+
3
4
5
6
7
+fahrenheit = (celsius * 1.8) + 32
8
9
+print('%0.1f Celsius is equal to %0.1f degree Fahrenheit'%(celsius,fahrenheit))
0 commit comments