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

以下代码的执行结果是什么? list1 = [1, 2, 3, 2] list1.remove(2) print(list1)

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