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

课程上的案例模板-指定名字对应模板 的代码运行起来不对

指定名字对应模板 的代码运行起来不对,那位大佬告知一下

https://img1.sycdn.imooc.com/659fedbb0001222a05580520.jpg

提问者:qq_锋矢_0 2024-01-11 21:33

个回答

  • 翎栋
    2024-02-17 17:33:30

    # -*- coding: utf-8 -*-


    # 加上上面这个注释就可以带有中文的注释了

    b = "Python"

    print("Life is short, you need {c}".format(c=b))


    print("Life is short, you need {0}".format("Python"))

    # no chinese world or 


  • qq_舞荷_1
    2024-01-15 15:47:12

    https://img1.sycdn.imooc.com/65a4e2d4000134db10110497.jpg没有问题

  • weixin_慕无忌2350060
    2024-01-15 15:47:08

    把两行注释去掉试试看