f-string 是 python3.6 之后版本添加的,称之为字面量格式化字符串,是新的格式化字符串的语法。
f-string 格式化字符串以 f 开头,后面跟着字符串,字符串中的表达式用大括号 {} 包起来,它会将变量或表达式计算后的值替换进去,实例如下:
''' Python f-string 风格格式化字符串 ''' name = "dahe" print(f'Hello {name}') # Hello dahe print(f'{1+2}') # 3
用了这种方式明显更简单了,不用再去判断使用 %s,还是 %d。
在 Python 3.8 的版本中可以使用 =
符号来拼接运算表达式与结果:
print(f'{1+2=}') # 1+2=3