gpt4 book ai didi

python - 在 Python 中打印 {1}

转载 作者:太空宇宙 更新时间:2023-11-04 08:01:43 24 4
gpt4 key购买 nike

我想在 Python 3.5 中得到一个看起来像 {1} 的打印输出,但我没有得到正确的 .format 语法。我试过:

print('{{}}'.format('1'))        # prints {}
print('{{id}}'.format(id='1')) # prints {id}
print('{{0}}'.format('1')) # prints {0}
print('\{{}\}'.format(1)) # ValueError: Single '}' encountered in format string

打印类似 {1} 的正确 print('{}'.format()) 语法是什么?

最佳答案

你可以这样做:

>>> print('{{{}}}'.format(1))
{1}

最里面的 {} 用于插入 1。最外面的 {{}} 用于打印 {} 但你需要其中两个来打印转义 {}(因为它们通常用于指示位置)。

关于python - 在 Python 中打印 {1},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38902901/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com