为什么注释不能用中文
"""score = 85
if score>=90:
print 'excellent'
elif score>=80:
print 'good'
elif score>=60:
print 'passed'
else:
print 'failedC"""#因为有‘’所以注释不用"""
为什么运行是错误的
"""score = 85
if score>=90:
print 'excellent'
elif score>=80:
print 'good'
elif score>=60:
print 'passed'
else:
print 'failedC"""#因为有‘’所以注释不用"""
为什么运行是错误的
2018-10-31
举报