pyt hon温度转换程序
时间: 2024-05-03 08:21:29 浏览: 70
Python电子教案2-1Python程序实例解析ppt课件.ppt
以下是一个简单的Python温度转换程序,可以将摄氏温度转换为华氏温度或将华氏温度转换为摄氏温度:
```python
def celsius_to_fahrenheit(celsius):
fahrenheit = (celsius * 1.8) + 32
return fahrenheit
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) / 1.8
return celsius
# 从用户那里获取输入
temperature = float(input("请输入温度: "))
unit = input("请输入单位(C或F):")
if unit == "C":
# 温度单位为摄氏度
result = celsius_to_fahrenheit(temperature)
print("华氏温度为: {:.1f}".format(result))
elif unit == "F":
# 温度单位为华氏度
result = fahrenheit_to_celsius(temperature)
print("摄氏温度为: {:.1f}".format(result))
else:
# 无效的温度单位
print("无效的单位。请输入 C 或 F。")
```
使用此程序,用户将被要求输入温度和单位。程序将根据输入执行相应的转换,并将转换后的温度打印到屏幕上。
阅读全文