【Python】使用format时,{}如何转义

{}多包一层{}即可,如下:

print('{{ - {} - }}'.format('hello'))

将输出:

{ - hello - }