第27051题 单选题
执行以下Python代码后,最终输出的结果是什么?
nested_list = [[1, 2], [3, 4], [5, 6]]
result = nested_list[1][1] + nested_list[2][]
print(result)
A

7

B

9

C

8

D

1

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