30秒学会 Python 片段 · 2018年6月19日

30秒学会 Python 片段 – fahrenheit_to_celsius.md


title: fahrenheit_to_celsius
tags: math,beginner

Converts Fahrenheit to Celsius.

Use the formula celsius = (fahrenheit - 32) / 1.8 to convert from Fahrenheit to Celsius.

代码实现

def fahrenheit_to_celsius(fahrenheit):
  return ((fahrenheit - 32) / 1.8)

使用样例

fahrenheit_to_celsius(77) # 25.0