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

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

小白兔cai

2021-03-21 20:47

#方法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)  



写回答 关注

2回答

  • 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

    谢谢,解决了

Python3 入门教程(新版)

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

154167 学习 · 1075 问题

查看课程

相似问题