Latest web development tutorials

Python Celsius Fahrenheit gilirannya

Dokumen Referensi Object contoh Python3

Contoh berikut menunjukkan bagaimana mengubah Fahrenheit ke 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))

Mengeksekusi hasil kode output di atas:

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

Contoh di atas, putar Celsius Fahrenheit rumus celsius * 1,8 = fahrenheit - 32. Jadi kita mendapatkan rumus berikut:

celsius = (fahrenheit - 32) / 1.8

Dokumen Referensi Object contoh Python3