Python2.6 开始,新增了一种格式化字符串的函数 str.format(),它增强了字符串格式化的功能。
format 函数可以接受不限个参数,位置可以不按顺序。
"{1} {0} {1}".format("hello", "world")
'world hello world'
框体{}内可选参数如下:
例子如下:
print("{:.2f}".format(3.1415926))
#3.14
s='python'
print("{0:c>10}".format(s))
#ccccpython
s='python'
print("{0:3}".format(s))
#python 槽宽度小于字符串长度时,自动补偿