Python 中的多行 F 字符串

Lakshay Kapoor 2023年1月30日
  1. Python 中的 f-Strings
  2. Python 中的多行 f-Strings
Python 中的多行 F 字符串

当 Python 3.6 出现时,它引入了一个全新的段来格式化字符串,即 f-Strings。它为我们提供了一种评估字符串中存在的各种 Python 表达式的方法,也是一种更快、更有效的格式化方法。

本教程将演示使用 f-Strings 和多行 f-Strings 进行字符串格式化。

Python 中的 f-Strings

f-Strings,也称为格式化字符串文字,总是以 f 为前缀,并且替换字段带有花括号。它是自 Python 3.6 以来最快的字符串格式化选项,因为它是在运行时评估的。

通过以 f 开头的表达式来使用字符串格式化文字。然后是可以是单引号、双引号或三引号的字符串类型。

最后,Python 表达式包含在字符串中,位于大括号之间。

例子:

name = "John"
print(f"How are you doing {name}?")

输出:

How are you doing John?

Python 中的多行 f-Strings

多行 f-strings 类似于在 Python 中使用单行 f-strings。只是应该在括号内提到字符串,即花括号。

此外,包含 f-string 的每一行都应以 f 开头。

例子:

name = "John"
text = f"His name is {name}. " "He is a programmer. " f"{name} can code in Python. " f""
print(text)

输出:

His name is John. He is a programmer. John can code in Python.
作者: Lakshay Kapoor
Lakshay Kapoor avatar Lakshay Kapoor avatar

Lakshay Kapoor is a final year B.Tech Computer Science student at Amity University Noida. He is familiar with programming languages and their real-world applications (Python/R/C++). Deeply interested in the area of Data Sciences and Machine Learning.

LinkedIn

相关文章 - Python String