下面Python代码执行时如输入99.99,将输出及格两个汉字。
score = int(input("请输入学生成绩:")) if score >= 60: print("及格") else: print("不及格")
正确
错误