这样写为什么不对

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

weixin_慕虎5187330

2022-06-11 21:40

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

short='short',Python='Python'

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

print(result)


写回答 关注

2回答

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

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

Python3 入门教程(新版)

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

154149 学习 · 1075 问题

查看课程

相似问题