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

我的代码为什么打印错误

template='Life is {a}','you need {b}'

short='short'

python='python'

 result=template.format(a=short,b=python)


提问者:慕粉2241025241 2020-12-12 17:03

个回答

  • 慕神7783868
    2021-03-23 10:59:07

    12月17那个人说的对,亲测,好像是因为格式问题,转义我不清楚

  • HeisMing
    2020-12-17 20:59:38

    template='Life is {a}','you need {b}'改为template='Life is {a},you need {b}'

  • qq_心灵有约_0
    2020-12-14 12:01:39

    '需要转义符