f-string Formatting Statement


f-string 首次在 CPython 3.6 版引入。

f-string 是 formatted string literals 的简写,中文译为 "格式化字符串文字"。

f-string 采用 f 或 F 作为前缀标识符,以 {} 包裹语句,但有一些 Notes .

f-string 句法的作用,类似 + 内置操作符、% 操作符和 format() 方法。

Table of contents


  1. f-string 句法和 + 内置操作符 性能比较
  2. f-string 句法和 format() 方法 性能比较
  3. f-string 句法和 % 操作符 性能比较
  4. f-string Syntactic Detail

See also:

% Operator

Format String Syntax

Format String Literal

Copyright Notice: This article is exclusive original manuscripts, copyrighted by Happy Digits Software , shall not be reproduced without permission.

Previous topic

format() Method

Next topic

% Operator

Quick search