原油产量和价格换算工具 - 在线计算器
jg = float(input('请输入原油价格')) sy = float(input('请输入原油数量'))
原油产量换算
bbl = sy / 159 t = bbl / 7.33
原油价格换算
yuan = sy * jg dollar = sy * jg / 6.5
print('原油产量换算:') print('桶数:', bbl) print('吨数:', t)
print('原油价格换算:') print('人民币:', yuan) print('美元:', dollar)
原文地址: https://www.cveoy.top/t/topic/lK5e 著作权归作者所有。请勿转载和采集!