f-string (UP032) 源自 pyupgrade linter。 有时提供修复。 作用 检查可以被 f-strings 替换的 str.format 调用。 为什么这不好? f-strings 更易读,通常比 str.format 调用更受欢迎。 示例 "{}".format(foo) 建议改为 f"{foo}" 参考 Python 文档:f-strings