SciPy - unit() 方法
SciPy unit() 方法用于使用字典从物理常数中访问特定单位。此方法包含值和单位。它在模块 scipy.constants 下定义。此函数的主要用途是允许用户计算准确的科学计算。
语法
以下是 SciPy unit() 方法的语法 −
unit(key)
参数
此方法仅接受单个参数 −
- key:此参数最好为指定物理常数名称的字符串。
返回值
此方法重新运行一个整数值。
示例 1
以下是基本的 SciPy unit() 方法,说明了物理常数("光速")的用法真空)。
from scipy.constants import physical_constants key = 'speed of light in vacuum' unit = physical_constants[key][2] print(f"The unit of {key} is {unit}.")
输出
上述代码产生以下结果 −
The unit of speed of light in vacuum is 0.0.
示例 2
这里我们使用物理常数的关键字"普朗克常数",以便以单位形式显示结果。
from scipy.constants import physical_constants key = 'Planck constant' unit = physical_constants[key][0] print(f"The unit of {key} is {unit}.")
输出
上述代码产生以下结果 −
The unit of Planck constant is 6.62607015e-34.