指定名字对应模板 的代码运行起来不对,那位大佬告知一下
# -*- 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
没有问题
把两行注释去掉试试看