摄氏度转华氏度
将摄氏度转换为华氏度。
- 使用转换公式
F = 1.8 * C + 32
。
def celsius_to_fahrenheit(degrees):
return ((degrees * 1.8) + 32)
celsius_to_fahrenheit(180) # 356.0
将摄氏度转换为华氏度。
F = 1.8 * C + 32
。def celsius_to_fahrenheit(degrees):
return ((degrees * 1.8) + 32)
celsius_to_fahrenheit(180) # 356.0