Python选择正确的字符串累加姿势,速度可以提升数倍

Posted Xavier Jiezou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python选择正确的字符串累加姿势,速度可以提升数倍相关的知识,希望对你有一定的参考价值。

引言

在通读谷歌的 Python 代码规范文档中,发现了有意思的有一段话:

Avoid using the + and += operators to accumulate a string within a loop. In some conditions, accumulating a string with addition can lead to quadratic rather than linear running time. Although common accumulations of this sort may be optimized on CPython, that is an implementation detail. The conditions under which an optimization applies are not easy to predict and may change. Instead, add each substring to a list and ''.join the list after the loop terminates, or write each substring to an io.StringIO buffer. These techniques consistently have amortized-linear run time complexity.

大意就是说,避免在循环中使用 ++= 运算符累积字符串。替代的是,先将字符串放到一个列表 list 中,然后使用 ''.join(list) 的方法来累加字符串。或者你也可以使用 io.StringIO 缓冲。

这是因为在循环中使用 ++= 运算符累积字符串的时间复杂度是 O(n2),而使用 ''.join(list) 的时间复杂度是 O(n)

方法

+/+=

>>> s = ''
>>> for i in ['a', 'b', 'c']:
...     s += i
... 
>>> s
'abc'

.join()

>>> s = ''.join(['a', 'b', 'c']) 
>>> s
'abc'

实验

这里设置一个实验对比 +=.join() 累加字符串耗时。

  • +=
import time
t1 = time.time()
s = ''
for i in [chr(i) for i in range(96, 123)]*1000000:
    s += i
t2 = time.time()
print(f'Time-consuming: t2-t1')
  • .join()
import time
t1 = time.time()
s = ''.join([chr(i) for i in range(96, 123)]*1000000)
t2 = time.time()
print(f'Time-consuming: t2-t1')

实验结果如下:

类型耗时
+=24.35s
''.join()0.26s

得出结论:当需要累加的字符串很多时,''.join() 的速度明显更快。

参考

https://google.github.io/styleguide/pyguide.html

以上是关于Python选择正确的字符串累加姿势,速度可以提升数倍的主要内容,如果未能解决你的问题,请参考以下文章

Python Pandas 遍历DataFrame的正确姿势 速度提升一万倍

Python Pandas 遍历DataFrame的正确姿势 速度提升一万倍

解密POM:提升自动化脚本稳定性和开发效率的正确姿势

解密POM:提升自动化脚本稳定性和开发效率的正确姿势

用VSCode写python的正确姿势

用VSCode写python的正确姿势