第27726题 单选题
已知Python嵌套列表`nested_list = [[1, 2], [3, 4], [5, 6]]`,下列哪个选项的代码可以正确获取到元素`4`?
A

nested_list[1][]

B

nested_list[2][1]

C

nested_list[1][1]

D

nested_list[][1]

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析