1 def as_num(x): 2 y='{:.5f}'.format(x) # 5f表示保留5位小数点的float型 3 return(y)
实验一下
1 as_num(1.2e-4)
1 In [3]:as_num(1.2e-4) 2 Out[3]: '0.00012'