# 字符串格式化 ''' {参数序号:格式控制标记} 填充 对齐(< > ^) 宽度 逗号 精度 类型 ''' a = "hello" b = "world" print("{},{}".format(a, b)) print("{1},{0}".format(a, b)) # 填充 s = "hello" print("{0:*^20} world!".format(s)) # 千位逗号 print("{:,}".format(1234567890)) # 精度 print("{:.2f}".format(1234.56789)) print("{:.5}".format("hello, world!")) # 类型 print("{0:b},{0:d},{0:x},{0:X},{0:c}".format(425)) print("{0:c}".format(98))