python 字符串格式化

时间:2023-01-14 18:34:52

1,基本用法

  1,正常拼串

    s1 = '%s aaa %s'('alice','bob')

  2.format

   不带编号

   s1 = '{} aaa {}'

   s1.format('hello','world')

   带编号

   s1 = '{1} aaaa {2} bbb {1}'

   s.format('hello','world')

   hello aaaa world hello

  命名

  s1 = '{a} aaa {b} bbbb {a}'

  s.format(a='hello',b='world')