题目详情
单选题 What will be the output of the following Python code? a=[13,56,17] a.append([87]) a.extend([45,67]) print(a)
A. [13, 56, 17, 87, 45, 67]
B. [13, 56, 17, [87], [45, 67]]
C. [13, 56, 17, 87,[ 45, 67]]
D. [13, 56, 17, [87], 45, 67]

学科:Python程序设计(双语)
时间:2023-11-24 00:22:55
相关题目
相关作业
