Latest web development tutorials

Python Celsius Fahrenheit turno

Document Object Reference Esempi python3

I seguenti esempi dimostrano come trasformare Fahrenheit a 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))

Eseguire i risultati di output di codice di cui sopra:

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

L'esempio di cui sopra, svoltare Celsius Fahrenheit formula Celsius * 1.8 = Fahrenheit - 32. Così otteniamo la seguente formula:

celsius = (fahrenheit - 32) / 1.8

Document Object Reference Esempi python3