VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • python3 拼接字符串的7种方法(2)

输出结果:Hello World!

python遇到未闭合的小括号,自动将多行拼接为一行。

6.通过string模块中的Template对象拼接

1
2
3
from string import Template
= Template('${s1} ${s2}!'
print(s.safe_substitute(s1='Hello',s2='World'))

输出结果:Hello World!

Template的实现方式是首先通过Template初始化一个字符串。这些字符串中包含了一个个key。通过调用substitute或safe_subsititute,将key值与方法中传递过来的参数对应上,从而实现在指定的位置导入字符串。这种方式的好处是不需要担心参数不一致引发异常,如:

1
2
3
from string import Template
= Template('${s1} ${s2} ${s3}!'
print(s.safe_substitute(s1='Hello',s2='World'))

输出结果:Hello World ${s3}!

7. 通过F-strings拼接

在python3.6.2版本中,PEP 498 提出一种新型字符串格式化机制,被称为“字符串插值”或者更常见的一种称呼是F-strings,F-strings提供了一种明确且方便的方式将python表达式嵌入到字符串中来进行格式化:

1
2
3
s1='Hello'
s2='World'
print(f'{s1} {s2}!')

输出结果:Hello World!

在F-strings中我们也可以执行函数:

1
2
3
4
def power(x):
    return x*x
x=4
print(f'{x} * {x} = {power(x)}')

输出结果:4 * 4 = 16

 

而且F-strings的运行速度很快,比%-string和str.format()这两种格式化方法都快得多。


相关教程