我搜索了现有的答案。我找到了打印花括号的答案,但它们也不包括在 f 字符串中执行函数。标记为重复的那个并没有解决我的问题。
我尝试打印的部分字符串是从函数中解析的。我的字符串的静态部分包括花括号。我可以使用旧样式执行该功能,但我希望使用新的 f-string 来执行此操作。最终字符串应如下所示:
test{aloha}
旧式作品:
>>> print('test{%s}'%(aloha()))
'test{aloha}'
f-string - 正如预期的那样,不打印花括号:
>>> print(f"test{(aloha())}")
'testaloha'
带有双卷曲的 f 字符串 - 不执行函数:
>>> print(f"test{{(aloha())}}")
"test{(xor('label'.encode(), 13).decode())}"
f-string 转义花括号 - 语法错误:
>>> print(f"test\{{(aloha())}\}")
"SyntaxError: f-string: single '}' is not allowed"
f-string 仅转义左大括号 - 不执行:
>>> print(f"test\{{(aloha())}}")
"test\{(xor('label'.encode(), 13).decode())}"
我是不是太过分了?
编辑:将原始执行的函数缩短为“aloha()”,但在我编辑时人们已经回复了有效的答案。他们的答案是正确的。