如果要引入random模块的函数,需要使用import关键字引入。()
查看答案
编写程序,生成一个包含50个随机整数的列表,然后删除其中的所有奇数。(提示:从后面向前删除),请补充缺失处代码。import randomx = [random.randint(0,100) for i in range(50)]print(x)i = len(x) - 1while i>= 0:if x[i]%2 == 1:del x[i]i-=1print(x)
A. if x[i]%2 == 1;del x[i]
B. if x[i]%2 ==1:del x[i]
C. if x[i]%2 == 1:del x[i]
D. if x[i]%2 == 1:del x
阅读下面的一段程序: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