Latest web development tutorials

Python Celsius Fahrenheit turn

Document Object Reference Examples Python3

The following examples demonstrate how to turn Fahrenheit to 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))

Execute the above code output results:

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

The above example, turn Celsius Fahrenheit formula celsius * 1.8 = fahrenheit - 32. So we get the following formula:

celsius = (fahrenheit - 32) / 1.8

Document Object Reference Examples Python3