问答详情
源自:3-7 Python的字符串format

我的代码为什么不行

template= 'Life is short, you need { }'
what='Python'
result = template.format(what)
print (result)


提问者:慕斯卡9087133 2023-06-16 17:59

个回答

  • 慕田峪9313994
    2023-06-17 01:43:37

    去掉大括号里的空格,再试试看