如何将 {} 显示为 python f 字符串的一部分
How to display {} as part of python f string
有什么方法可以将 {} 显示为 f 字符串的一部分,因为它在 f 字符串中具有特殊含义。换句话说:
如果 运行 print(f"hello world {}")
,我想要 hello world {}
这样的结果
我尝试的解决方案是:print(f"hello world \{\}")
。但是没有用。
非常感谢您的帮助
这应该有效
print(f"hello world {{}}")
有什么方法可以将 {} 显示为 f 字符串的一部分,因为它在 f 字符串中具有特殊含义。换句话说:
如果 运行 print(f"hello world {}")
,我想要 hello world {}
我尝试的解决方案是:print(f"hello world \{\}")
。但是没有用。
非常感谢您的帮助
这应该有效
print(f"hello world {{}}")