(单选题, )
"执行下面操作后,list2的值是:( )
>>>list1 = ['a', 'b', 'c']
>>>list2 = list1
>>>list1.append('de')
A.['a', 'b', 'c']
B.['a', 'b', 'c', 'de']
C.['d', 'e', 'a', 'b', 'c']
D.['a', 'b', 'c', 'd', 'e']
正确答案是B
(单选题, )
"执行下面操作后,list2的值是:( )
>>>list1 = ['a', 'b', 'c']
>>>list2 = list1
>>>list1.append('de')
A.['a', 'b', 'c']
B.['a', 'b', 'c', 'de']
C.['d', 'e', 'a', 'b', 'c']
D.['a', 'b', 'c', 'd', 'e']
正确答案是B