标签: python python-3.x list
我在测验中偶然发现了这个。但是为什么会这样呢?
numbers = [1, 2, 3] numbers.append(numbers) a) throws an exception b) [1, 2, 3, 1, 2, 3] c) [1, 2, 3, [...]] d) [1, 2, 3, [1, 2, 3]]
我的期望是(d),但正确的答案是(c)。为什么是3点?