Python 3.6将添加与Ruby的字符串插值类似的文字字符串插值。从该版本的Python(计划于2016年底发布)开始,你将能够在
“ f-strings”中包含表达式,例如
name = "Spongebob Squarepants"print(f"Who lives in a Pineapple under the sea? {name}.")
在3.6之前的版本中,最接近的是
name = "Spongebob Squarepants"print("Who lives in a Pineapple under the sea? %(name)s." % locals())
该%运算符可用于Python中的字符串插值。第一个 *** 作数是要内插的字符串,第二个 *** 作数可以具有不同的类型,包括“映射”,将字段名称映射到要内插的值。在这里,我使用了局部变量字典
locals()将字段名称映射name为它的值作为局部变量。
使用
.format()最新Python版本的方法的相同代码如下所示:
name = "Spongebob Squarepants"print("Who lives in a Pineapple under the sea? {name!s}.".format(**locals()))
还有一个string.Template类:
tmpl = string.Template("Who lives in a Pineapple under the sea? $name.")print(tmpl.substitute(name="Spongebob Squarepants"))
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)