LOADING

python四舍五入保留小数

print('%.4f' % 1.22761)
1.2276
print('%.3f' % 1.2276)
1.228
print('%.2f' % 1.2276)
1.23

标签: none

添加新评论