Kizspy Question: 13
(Choose 1 answer)
FLOWERF.JM.COom
List A is defined as follows:
A = ['a', 'b', 'c']
Which of the following statements adds 'd' and 'e' to the end of A, so that
A. A.extend(['d', 'e'])
B. A.append(['d', 'e'])
C. A[-1] = ['d', 'e']
D. A.append('d', 'e')
then equals ['a', 'b', 'c', 'd', 'e']: