score = 59 if score < 60: print('抱歉,考试不及格')
我按案例把这个if语句程序一样敲进index.py,为什么会显示运行失败?也不存在字符错误,正常应该显示“抱歉,考试不及格"这几个字啊??
# Enter a code
# coding=utf-8
score = 59
if score < 60:
print('抱歉,考试不及格')
输出内容里面如果有汉字 要在首行加上
# coding: utf-8
哟
求采纳😘