试题

试题 试卷

logo

题型:单选题 题类: 难易度:普通

浙江省宁波市2023学年高三上学期信息技术选考模拟考试试卷

有如下 python 程序:

import random

a,i,c=[],0,0

while i<5:

    b=random.randint(0,9)

    if b not in a:

        a.append(b)

        i+=1

key=int(input("key="))

for j in range(len(a)):

    if a[j]%key==0:

        c+=1

    else:

        a[j-c]=a[j]

print(a)

运行该程序,若输入 key 为2,则输出的a 不可能为(   )

A、[3,7,5,4,5] B、[3,7,1,5,5] C、[3,5,0,3,5] D、[9,7,4,7,3]
举一反三
返回首页

试题篮