本篇文章介绍Python 中几种字符串格式化方法及其比较 起步 在 Python 中,提供了很多种字符串格式化的方式,分别是 %-formatting、str.format 和 f-string 。本文将比较这几种格式化方法。 %- 格式化 这种格式化方式来自于 C 语言风格的 sprintf 形式: name
本篇文章介绍Python 中几种字符串格式化方法及其比较 起步 在 Python 中,提供了很多种字符串格式化的方式,分别是 %-formatting、str.format 和 f-string 。本文将比较这几种格式化方法。 %- 格式化 这种格式化方式来自于 C 语言风格的 sprintf 形式:
C 语言的给实话风格深入人心,通过 % 进行占位。 为什么 %-formatting不好 不好的地方在于,如果字符串较长或较多的参数,那么可读性就变得很差。 str.format 格式化 PEP-3101 带来了 str.format ,它是对 %-formatting 的改进。它使用正常的函数调用语法,并且可以通过对要转换为字符串的对象的 __format __() 方法进行扩展。
并支持字典形式传参,免于位置参数带来的麻烦:
这两种方式代码效果相同,只是第一种方法需要严格控制传入的参数位置,而第二种方法没有这种限制, 并增加了代码的可读性。各种技巧可查看 Format Specification Mini-Language 为什么 str.format() 并不好 虽然它解决了字符串冗长情况下的可读性,但需要对字典传参基本是要重写一遍变量名,不够优雅。 f-string 格式化 PEP-0498 带来了 f-string 方式,它从 Python3.6 开始支持。这种方式也是使用 __format__ 协议进行格式化。
语法上与 str.format() 类似,但更为简洁,当字符串较长时也不会繁琐。更强大的是它支持任意的表达式。我们可以在花括号内进行四则运算或函数调用等:f"{2 * 6}" 或者 f"{name.lower()} is funny" 。 并且它性能也最好。 几种格式化方式性能比较
结果:
f-string 格式化的方式性能最好。 为何 f-string 速度如此快 从指令来看,f'Status: {status}\r\n{body}\r\n' 翻译成:
正如指令中所示的,f-string 是运行时渲染的,底层中转成了类似 "Status: " + status+ "\r\n" + body + "\r\n" 的形式。正如 PEP-0498 中提到的: F-strings provide a way to embed expressions inside string literals, using a minimal syntax. It should be noted that an f-string is really an expression evaluated at run time, not a constant value. In Python source code, an f-string is a literal string, prefixed with 'f', which contains expressions inside braces. The expressions are replaced with their values.
|
2019-06-18
2019-07-04
2021-05-23
2021-05-27
2021-05-27