温度转换python代码
时间: 2023-05-30 18:06:09 浏览: 149
以下是将华氏温度转换为摄氏温度的Python代码:
```python
fahrenheit = float(input("请输入华氏温度:"))
celsius = (fahrenheit - 32) * 5 / 9
print("摄氏温度为:", celsius)
```
以下是将摄氏温度转换为华氏温度的Python代码:
```python
celsius = float(input("请输入摄氏温度:"))
fahrenheit = celsius * 9 / 5 + 32
print("华氏温度为:", fahrenheit)
```
相关问题
温度转换Python代码
以下是将摄氏温度转换为华氏温度的Python代码:
```python
celsius = float(input("请输入摄氏温度:"))
fahrenheit = (celsius * 1.8) + 32
print("{0:.1f}摄氏度 = {1:.1f}华氏度".format(celsius, fahrenheit))
```
以下是将华氏温度转换为摄氏温度的Python代码:
```python
fahrenheit = float(input("请输入华氏温度:"))
celsius = (fahrenheit - 32) / 1.8
print("{0:.1f}华氏度 = {1:.1f}摄氏度".format(fahrenheit, celsius))
```
温度转换 python 写代码
非常好!下面是一个将摄氏温度转换为华氏温度的 Python 代码示例:
```
def celsius_to_fahrenheit(temp_c):
temp_f = (temp_c * 9/5) + 32
return temp_f
# 调用函数并打印结果
print(celsius_to_fahrenheit(0)) # 32.0
print(celsius_to_fahrenheit(100)) # 212.0
```
这里有一个将华氏温度转换为摄氏温度的 Python 代码示例:
```
def fahrenheit_to_celsius(temp_f):
temp_c = (temp_f - 32) * 5/9
return temp_c
# 调用函数并打印结果
print(fahrenheit_to_celsius(32)) # 0.0
print(fahrenheit_to_celsius(212)) # 100.0
```
希望这些信息对你有帮助!
阅读全文