format实例

下面举一些实例来说明format各个参数的用法

  1. // python :^:代表居中显示数字567,位数width=10,fill=*(填充符为*)
  2. '{:*^10}'.format(567)
  3. 结果:
  4. '***567****'
  1. //python :0是填充符,2是width,表示位数为2
  2. '{:02}:{:02}:{:02}'.format(13,4,57)
  3. 结果:
  4. '13:04:57'

通过位置来填充字符串

  1. print('hello {0} i am {1}'.format('world','python'))
  2. # 输入结果:hello world i am python
  3. print('hello {} i am {}'.format('world','python') )
  4. #输入结果:hello world i am python
  5. print('hello {0} i am {1} . a now language-- {1}'.format('world','python')
  6. # 输出结果:hello world i am python . a now language-- python
  • foramt会把参数按位置顺序来填充到字符串中,第一个参数是0,然后1 ……
  • 也可以不输入数字,则会按照顺序自动分配,而且一个参数可以多次插入

通过key来填充

  1. obj = 'world'
  2. name = 'python'
  3. print('hello, {obj} ,i am {name}'.format(obj = obj,name = name))
  4. # 输入结果:hello, world ,i am python

通过列表填充

  1. obj = 'world'
  2. name = 'python'
  3. print('hello, {obj} ,i am {name}'.format(obj = obj,name = name))
  4. # 输入结果:hello, world ,i am python

通过列表填充

  1. list=['world','python']
  2. print('hello {names[0]} i am {names[1]}'.format(names=list))
  3. # 输出结果:hello world i am python
  4. print('hello {0[0]} i am {0[1]}'.format(list))
  5. #输出结果:hello world i am python

通过字典填充

  1. dict={'obj':'world','name':'python'}
  2. print('hello {names[obj]} i am {names[name]}'.format(names=dict))
  3. 结果hello world i am python

通过类的属性填充

  1. class Names():
  2. obj='world'
  3. name='python'
  4. print('hello {names.obj} i am {names.name}'.format(names=Names))
  5. #输入结果hello world i am python

使用魔法参数

  1. args = [',','inx']
  2. kwargs = {'obj': 'world', 'name': 'python'}
  3. print('hello {obj} {} i am {name}'.format(*args, **kwargs))#输入结果:hello world , i am python
  • 注意:魔法参数跟你函数中使用的性质是一样的:这里
  1. format(*args, **kwargs))
  • 等价于:
  1. format(‘,’,’inx’,obj = world’,name = python’)