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 Celsius to Fahrenheit
x =
int
(
input
(
"Insert a value in Celsius: "
)) x =
round
(x * (
9
/
5
) +
32
)
print
(
str
(x) +
'F'
)
Output:
Insert a value in Celsius: 98
208F
Insert a value in Celsius: 43
109F
Run Python Online