Home
Flutter
Python
Android
ReactNative
C Tutorial
Q & A
Quiz
Forum
Kotlin
Java
Ruby
Source Code
Dart
Widget Catlog
Write For Us
DevOps
Vocabulary
Tutorials
Git
Jobs
XApk
DevOps
Blog
Sitemap
SubScribe
Python program to Convert from Fahrenheit to Celsius
x =
int
(
input
(
"Insert a Fahrenheit value: "
)) x =
round
((x-
32
)*(
5
/
9
))
print
(
str
(x)+
'C'
)
Outputs:
Insert a Fahrenheit value: 102
39C
Insert a Fahrenheit value: 208
98C
Run Python Online