Python中print()函数中的f字符

这个”f“字符其实和print函数没有关系,这个f字符代表的是Formatted string literal,例如如下代码:

# Python

name = "Fred"
f"He said his name is {name!r}."

这个Formatted string literal还有几种模式:s | r | a 。具体使用规则参考链接。

所有字符串常量前缀的释义可查看python的帮助文档。

你可能感兴趣的:(Python,python)