1
{1}
のような出力をPython 3.5で取得したいのですが、.format
という構文が正しく表示されません。私が試した:Pythonで{1}を印刷します
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())
構文は何ですか?
ありがとう、私は '\ {'をエスケープしてみました... – bastelflp