📌  相关文章
📜  如何在 python 代码示例中将华氏温度转换为摄氏度

📅  最后修改于: 2022-03-11 14:46:53.447000             🧑  作者: Mango

代码示例2
#!/usr/bin/env python
Fahrenheit = int(raw_input("Enter a temperature in Fahrenheit: "))

Celsius = (Fahrenheit - 32) * 5.0/9.0

print "Temperature:", Fahrenheit, "Fahrenheit = ", Celsius, " C"