template='Life is {a}','you need {b}'
short='short'
python='python'
result=template.format(a=short,b=python)
12月17那个人说的对,亲测,好像是因为格式问题,转义我不清楚
template='Life is {a}','you need {b}'改为template='Life is {a},you need {b}'
'需要转义符