convert_volume
将容量值从一个单位转换为另一个单位。
语法
convert_volume(
值,
从,
到)
详细了解语法约定。
参数
客户 | 类型 | 必需 | Description |
---|---|---|---|
value | real |
✔️ | 要转换的值。 |
from | string |
✔️ | 要从其进行转换的单元。 有关可能的值,请参阅转换单位。 |
to | string |
✔️ | 要转换为其的单元。 有关可能的值,请参阅转换单位。 |
转换单位
- AcreFoot
- AuTablespoon
- BoardFoot
- Centiliter
- CubicCentimeter
- CubicDecimeter
- CubicFoot
- CubicHectometer
- CubicInch
- CubicKilometer
- CubicMeter
- CubicMicrometer
- CubicMile
- CubicMillimeter
- CubicYard
- Decaliter
- DecausGallon
- Deciliter
- DeciusGallon
- HectocubicFoot
- HectocubicMeter
- Hectoliter
- HectousGallon
- ImperialBeerBarrel
- ImperialGallon
- ImperialOunce
- ImperialPint
- KilocubicFoot
- KilocubicMeter
- KiloimperialGallon
- Kiloliter
- KilousGallon
- Liter
- MegacubicFoot
- MegaimperialGallon
- Megaliter
- MegausGallon
- MetricCup
- MetricTeaspoon
- Microliter
- Milliliter
- OilBarrel
- UkTablespoon
- UsBeerBarrel
- UsCustomaryCup
- UsGallon
- UsLegalCup
- UsOunce
- UsPint
- UsQuart
- UsTablespoon
- UsTeaspoon
返回
返回从一种容量单位转换为另一种容量单位后的输入值。 无效的单位将返回 null
。
示例
print result = convert_volume(1.2, 'CubicMeter', 'AcreFoot')
输出
result |
---|
0.0009728568 |