Chinaunix首页 | 论坛 | 博客
  • 博客访问: 337534
  • 博文数量: 148
  • 博客积分: 2745
  • 博客等级: 少校
  • 技术积分: 1704
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-30 14:59
文章分类

全部博文(148)

文章存档

2013年(97)

2012年(7)

2011年(3)

2010年(41)

我的朋友

分类: Python/Ruby

2013-05-11 22:53:09

你可以用。 比如;

>>> print 'We are the {0} who say "{1}!"'.format('knights''Ni')
We are the knights who say "Ni!"

括号内的字符(称为格式字段)被替换的对象。{}括号中的数字是指替换的位置,里面的数字,比如0,1表示替换元组的索引位置。

>>> print '{0} and {1}'.format('spam''eggs')
spam and eggs
>>> print '{1} and {0}'.format('spam''eggs')
eggs and spam

如果使用关键字参数的格式方法,其值被称为使用的参数名称。

>>> print 'This {food} is {adjective}.'.format(
...       food='spam', adjective='absolutely horrible')
This spam is absolutely horrible.

下面是位置和关键字参数的任意组合:

>>> print 'The story of {0}, {1}, and {other}.'.format('Bill''Manfred',
...                                                    other='Georg')
The story of Bill, Manfred, and Georg.
阅读(1102) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~