python 使用 .format 打印双括号“{{}}”

python print double Bracket "{{}}" using .format on it

通过使用 print("""{{1}} {}""".format("x")) 我想打印这个:

{{1}} x

但我明白了:

{1} x

但是在使用 print("""{{{1}}} {}""".format("x"))(三个括号而不是两个)之后我得到 IndexError: tuple index out of range

那么如何使用 .format 打印双括号呢? 提前致谢。

四括号 print("""{{{{1}}}} {}""".format("x")) 因为双括号在输出中打印一个括号所以 4 打印两个