#1.使用%操作符(老方式)
>>> name = "Yarving"
>>> print("Hello, %s" % name)
'Hello, Yarving'
这种方式和C语言的printf方式很像,使用%s
作为字符串的标识符。
也可以结合字典的方式:
>>> 'Hey %(name)s, there is a 0x%(errno)x error!' % {
... "name": name, "errno": errno }
'Hey Bob, there is a 0xbadc0ffee error!'
#2.使用str.format()函数
>>> 'Hello, {}'.format(name)
'Hello, Bob'
这是Python3引入的新函数。
如果搭配字典方式的话:
>>> 'Hey {name}, there is a 0x{errno:x} error!'.format(
... name=name, errno=errno)
'Hey Bob, there is a 0xbadc0ffee error!'
#3.使用f-strings
>>> name = "Yarving"
>>> f'Hello, {name}!'
'Hello, Yarving!'
这是Python3.6引入的新方式。
在花括号内还可以直接进行计算:
>>> a = 5
>>> b = 10
>>> f'Five plus ten is {a + b} and not {2 * (a + b)}.'
'Five plus ten is 15 and not 30.'
#4.Template String
>>> from string import Template
>>> name = "Yarving"
>>> t = Template('Hey, $name!')
>>> t.substitute(name=name)
'Hey, Yarving!'
这是标准数据库提供的方式。
也可以替换字典:
>>> templ_string = 'Hey $name, there is a $error error!'
>>> Template(templ_string).substitute(
... name=name, error=hex(errno))
'Hey Bob, there is a 0xbadc0ffee error!'
原文始发于微信公众号(Know Why It):Python 字符串拼接
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/276317.html