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

这样写为什么不对

template='Life is {s},you need {p}'

short='short',Python='Python'

result=template.format(s=short,p=Python)

print(result)


提问者:weixin_慕虎5187330 2022-06-11 21:40

个回答

  • 慕村0394702
    2022-07-16 12:11:54

    template='Life is {s},you need {p}'


    short='short';Python='Python'


    result=template.format(s=short,p=Python)


    print(result)

    要么使用分号' ; ',要么换行。不能使用逗号


  • 慕斯3189503
    2022-06-15 00:29:04

    第二行的代码 去掉逗号 分成两行