第27546题 单选题
执行以下Python代码,最终的输出结果是?
list1 = [1, 2, "hello"]
list2 = [3, True]
result = list1 + list2
print(result)
A

[4, 3, "hello"]

B

[1, 2, "hello", 3, True]

C

程序运行报错,提示元素类型不兼容

D

[1, 2, "hello"]

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