题目内容

阅读下面的一段程序:score = -1if score >= 0 and score <=100:if score >= 80 and score <= 100:print("优")elif score >= 60 and score < 80:print("良")elif score >= 0 and score < 60:print("差")else:print("无效数字")运行程序后,最终执行的结果为()。

A. 优
B. 良
C. 差
D. 无效数字

查看答案
更多问题

请阅读下面的程序:for i in range(5):i+=1if i==3:breakprint(i)上述程序中,print语句会执行()次。

A. 1
B. 2
C. 3
D. 4

下列选项中,可以删除整个列表的是()。

A. del
B. pop
C. remove
D. delete

下列语句中,可以实现无限循环的是( )。

A. while 1
B. while True
C. while False
D. while []

Python中没有do-while循环。( )A.对B.错

A. 对
B. 错

答案查题题库