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

执行以下代码后,列表的值会是什么? list1 = [1, 2, 3] list1.append(4) print(list1)

A[1, 2, 3]
B[1, 2, 3, 4]
C[4, 1, 2, 3]
D[1, 4, 2, 3]