首页题库练习题目详情
Python程序设计单选题中等

以下代码中,最终输出的数量是? for i in range(3): for j in range(2): print(i, j)

A3
B6
C5
D2