Python论坛  - 讨论区

标题:Python Cookbook 之 使用format对数值进行格式化

2014年04月01日 星期二 09:16

当我们要对数值进行格式化输出时,可以使用Python内置的format函数,其功能强大,使用方便。代码示例如下:

x=1234.56789
print(format(x,'0.2f'))
print(format(x,'>10.1f'))
print(format(x,'<10.1f'),"|")
print(format(x,'^10.1f'),'|')
print(format(x,','))
print(format(x,'0,.1f'))
print(format(x,'e'))
print(format(x,'0.2E'))
y='The value is {:0,.2f}'.format(x)
print(y)

参考资料:

https://docs.python.org/3/library/functions.html#format

https://docs.python.org/3/library/string.html#formatspec

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2024

    京ICP备05028076号