第17493题 单选题
以下Python程序的功能是?
import random
a=""
for i in range(4):
    c=random.randint(0,9)
    if random.randint(0,1):
        d=random.randint(97,122)
    else:
        d=random.randint(65,90)
    a=a+str(c)+chr(d)
print(a)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析