【Python】保留有效位

2023-01-31 04:01:31 python 保留
a=b/float(c) #例如此时 a=4.323232324343

#输出到文件中
outputFile.write(str('%.3f'%a)+'\n')  #保留小数点三位有效数字
#直接输出
print 'a=%0.3f, b=%d'%(a,b)

相关文章