python format格式化字符串

你可以用字符串的format方法来格式化输出字符串。 比如;

>>> 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 .
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值