def as_num(x):
y='{:.5f}'.format(x) # 5f表示保留5位小数点的float型
return(y)

实验一下

 as_num(1.2e-4)
 In [3]:as_num(1.2e-4)
Out[3]: '0.00012'
05-11 22:09