📜  Python 将摄氏温度转换为华氏温度

📅  最后修改于: 2020-10-30 00:49:50             🧑  作者: Mango

将摄氏温度转换为华氏温度的Python程序

摄氏:

摄氏温度是温度的度量单位。也被称为摄氏。它是全球大多数国家/地区使用的SI衍生单位。

它以瑞典天文学家Anders Celsius命名。

华氏度:

华氏温度也是一个温度标尺。它以波兰出生的德国物理学家Daniel Gabriel Fahrenheit的名字命名。它使用华氏温度作为温度单位。

转换公式:

要么,

请参阅以下示例:

# Collect input from the user
celsius = float(input('Enter temperature in Celsius: '))

# calculate temperature in Fahrenheit
fahrenheit = (celsius * 1.8) + 32
print('%0.1f  Celsius is equal to %0.1f degree Fahrenheit'%(celsius,fahrenheit))

输出: