SciPy 教程 之 SciPy 模块列表 7
单位类型
常量模块包含以下几种单位:
公制单位
二进制,以字节为单位
质量单位
角度换算
时间单位
长度单位
压强单位
体积单位
速度单位
温度单位
能量单位
功率单位
力学单位
时间单位
返回秒数(hour 返回 3600.0)。
实例
from scipy import constants
print(constants.minute) #60.0
print(constants.hour) #3600.0
print(constants.day) #86400.0
print(constants.week) #604800.0
print(constants.year) #31536000.0
print(constants.Julian_year) #31557600.0