python怎么输出浮点数

如题所述

方法>>> import math
>>> math.pi
3.141592653589793
>>> '%f'%math.pi
'3.141593'
>>> '%.30f'%math.pi
'3.141592653589793115997963468544'
>>> print '%.30f'%math.pi
3.141592653589793115997963468544
温馨提示:答案为网友推荐,仅供参考
第1个回答  2017-04-03
float(123)
float('123')
相似回答