第13445题 单选题
运行给定Python随机数生成程序段,判断列表list1的可能值
import random
list1=[0]*6
i=0
while i<6:
    if i%2==0:
        list1[i]=int(random.random()*10)
    else:
        list1[i]=random.randint(1,5)*2+1
    i+=1
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析