标签:pre span class bsp 字符串格式化 填充 宽度 for format
>>> print("{:.2f}".format(3.1415)) 3.14
>>> print("{:+.2f}".format(-3.1415)) -3.14
>>> print(‘{:.0f}‘.format(2.7)) 3
>>> print(‘{:0>3d}‘.format(4)) 004
>>> print(‘{:,}‘.format(123456789)) 123,456,789
>>> print(‘{:.2%}‘.format(0.98)) 98.00%
>>> print(‘{:.2e}‘.format(123456789)) 1.23e+08
标签:pre span class bsp 字符串格式化 填充 宽度 for format
原文地址:https://www.cnblogs.com/shiyixirui/p/14313809.html