题库 Python题库 题目列表 执行以下程序代码score = eval(input(&quot...
单选题

执行以下程序代码

score = eval(input("请输入成绩:"))
if score > 0 and score < 60:
    print("不及格")
elif score >= 60 and score <=100:
    print("及格")
else:
    print("请输入正确的成绩")


当输入60时,输出结果是?( )

A.

及格

B.

不及格

C.

请输入正确的成绩

D.

60

题目信息
2023年 9月 选择题
100%
正确率
0
评论
64
点击