Python은 온도 단위를 변환하는 여러 가지 방법을 제공합니다. NumPy 라이브러리의 numpy.convert_units() 함수를 사용하고 NumPy를 가져오고 변환을 위해 Convert_units를 사용합니다. Pandas 라이브러리에서 pandas.to_numeric() 함수를 사용하세요. Pandas를 가져오고 to_numeric을 사용하여 지능적으로 온도를 변환하세요. 사용자 정의 함수 사용: 변환을 위해 fahrenheit_to_celsius 및 celsius_to_fahrenheit 사용자 정의 함수를 만듭니다.
Python의 온도 변환
Python은 온도 단위를 변환하는 다양한 방법을 제공합니다.
NumPy
NumPy 라이브러리의 numpy.convert_units()
함수를 사용하세요. 온도 단위를 변환하는 데 사용할 수 있습니다. numpy.convert_units()
函数可用于转换温度单位:
<code class="python">import numpy as np # 从华氏度转换为摄氏度 celsius = np.convert_units(100, 'degF', 'degC') # 从摄氏度转换为华氏度 fahrenheit = np.convert_units(37, 'degC', 'degF')</code>
使用Pandas
Pandas库中的pandas.to_numeric()
<code class="python">import pandas as pd # 从华氏度转换为摄氏度 celsius = pd.to_numeric("100 degF", unit='degF', errors='coerce') # 从摄氏度转换为华氏度 fahrenheit = pd.to_numeric("37 degC", unit='degC', errors='coerce')</code>
Pandas 사용
Pandas 라이브러리의pandas.to_numeric()
함수는 온도 단위를 지능적으로 변환할 수 있습니다.
<code class="python">def fahrenheit_to_celsius(fahrenheit): """将华氏度转换为摄氏度""" return (fahrenheit - 32) * 5/9 def celsius_to_fahrenheit(celsius): """将摄氏度转换为华氏度""" return celsius * 9/5 + 32</code>
사용자 정의 함수 사용
온도 단위를 변환하는 사용자 정의 함수를 만드는 것도 가능합니다:<code class="python"># NumPy fahrenheit_value = 100 celsius_value = np.convert_units(fahrenheit_value, 'degF', 'degC') print("华氏度:", fahrenheit_value, "摄氏度:", celsius_value) # Pandas fahrenheit_value = "100 degF" celsius_value = pd.to_numeric(fahrenheit_value, unit='degF', errors='coerce') print("华氏度:", fahrenheit_value, "摄氏度:", celsius_value) # 自定义函数 fahrenheit_value = 100 celsius_value = fahrenheit_to_celsius(fahrenheit_value) print("华氏度:", fahrenheit_value, "摄氏度:", celsius_value)</code>
위 내용은 Python123에서 온도 변환을 작성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!