What is the output of the following code?
t = ['a', 'b', 'c'] t.append('d') print(t)
A) ['a', 'b', 'c', 'd']
['a', 'b', 'c', 'd']
C) ['a', 'b', 'd', 'c']
['a', 'b', 'd', 'c']
B) ['d', 'a', 'b', 'c']
['d', 'a', 'b', 'c']
D) ['a', 'd', 'b', 'c']
['a', 'd', 'b', 'c']