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

在编辑器内单独运行都对啊,在网页内运行错误,为什么?

#方法1 template="Life is short,{} " data="you need Python." result=template.format(data) print(result)

#方法2 template="Life is short,{a} " short="you need Python." result=template.format(a=short) print(result)  



提问者:小白兔cai 2021-03-21 20:47

个回答

  • qq_加油少年_2
    2021-03-21 22:54:16
    已采纳

    template="Life is short,{} " 

    data="you need Python."

    result=template.format(data) 

    print(result)

    不要全部写在一行啊

  • 小白兔cai
    2021-03-26 20:40:16

    谢谢,解决了