我的代码为什么打印错误

来源:3-7 Python的字符串format

慕粉2241025241

2020-12-12 17:03

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

short='short'

python='python'

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


写回答 关注

3回答

  • 慕神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

    '需要转义符


Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154164 学习 · 1075 问题

查看课程

相似问题