Latest web development tutorials

por sua vez, Python Celsius Fahrenheit

Document Object Reference Exemplos Python3

Os seguintes exemplos demonstram como transformar Fahrenheit para Celsius:

# -*- coding: UTF-8 -*-

# Filename : test.py
# author by : www.w3big.com

# 用户输入摄氏温度

# 接收用户收入
celsius = float(input('输入摄氏温度: '))

# 计算华氏温度
fahrenheit = (celsius * 1.8) + 32
print('%0.1f 摄氏温度转为华氏温度为 %0.1f ' %(celsius,fahrenheit))

Executar os resultados de saída do código acima:

输入摄氏温度: 38
38.0 摄氏温度转为华氏温度为 100.4 

O exemplo acima, rode Celsius Fahrenheit fórmula celsius * 1.8 = Fahrenheit - 32. Assim, obtemos a seguinte fórmula:

celsius = (fahrenheit - 32) / 1.8

Document Object Reference Exemplos Python3