1、直接通过(+)操作符拼接

1
2
>>> 'Hello' + ' ' + 'World' + '!'
'Hello World!'

使用这种方式进行字符串连接的操作效率低下,因为python中使用 + 拼接两个字符串时会生成一个新的字符串,生成新的字符串就需要重新申请内存,当拼接字符串较多时自然会影响效率。

2、通过str.join()方法拼接

1
2
3
>>> strlist = ['Hello', ' ', 'World', '!']
>>> ''.join(strlist)
'Hello World!'

这种方式一般常使用在将集合转化为字符串,''.join()其中''可以是空字符,也可以是任意其他字符,当是任意其他字符时,集合中字符串会被该字符隔开。

3、通过str.format()方法拼接

1
2
>>> '{} {}!'.format('Hello', 'World')
'Hello World!'

通过这种方式拼接字符串需要注意的是字符串中{}的数量要和format方法参数数量一致,否则会报错。

4、通过(%)操作符拼接

1
2
>>> '%s %s!' % ('Hello', 'World')
'Hello World!'

这种方式与str.format()使用方式基本一致。

5、通过()多行拼接

1
2
3
4
5
6
7
>>> (
... 'Hello'
... ' '
... 'World'
... '!'
... )
'Hello World!'

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

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

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

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

1
2
3
4
>>> from string import Template
>>> s = Template('${s1} ${s2} ${s3}!')
>>> 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
4
>>> s1 = 'Hello'
>>> s2 = 'World'
>>> f'{s1} {s2}!'
'Hello World!'

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

1
2
3
4
5
6
>>> def power(x):
... return x*x
...
>>> x = 5
>>> f'{x} * {x} = {power(x)}'
'5 * 5 = 25'

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

 

最新文章

  1. 正确匹配URL的正则表达式
  2. java笔记--使用事件分配线程更新Swing控件
  3. unity 环境增强
  4. iOS小技巧2
  5. 【推介】TMS的控件之“TMS Unicode Component Pack”和“TMS Advanced Toolbars & Menus”
  6. 基于jQuery带备忘录功能的日期选择器
  7. Spark standalone安装(最小化集群部署)
  8. Csharp Syntactic sugar
  9. .net实现依赖注入
  10. openfire当中的Custom Database Integration Guide的配置
  11. git 简单入门
  12. ISLR系列:(4.3)模型选择 PCR & PLS
  13. 从合并两个Map说开去 - foldLeft 和 foldRight 还有模式匹配
  14. windows Jenkins git 配置
  15. mysql 数据库表备份和还原
  16. Socket网络编程--epoll小结
  17. storm_常用命令
  18. C#高级编程六十六天----表达式树总结【转】
  19. CPU线程 和 Java线程
  20. 【SpringBoot】集成 Web Flux

热门文章

  1. jenkins+pytest+ allure运行多个py文件测试用例
  2. ddt 接口示范以及报告生成html案例
  3. Spring源码分析(十四)从bean的实例中获取对象
  4. (转)Jmeter http请求之content-type
  5. (转)WebSocket的原理
  6. 【Dubbo源码阅读系列】之 Dubbo XML 配置加载
  7. jQuery----each()方法
  8. 七、Delphi10.3读取JSON数组
  9. ARM汇编语言
  10. 20155202 张旭 课下作业: Linux下IPC机制