What is the output of the following code?
t = ['a', 'b', 'c'] x = t.pop(1) print(t) print(x)
C) ['a', 'b']\n'c'
['a', 'b']\n'c'
B) ['b', 'c']\n'a'
['b', 'c']\n'a'
D) ['b', 'c']\n'a'
A) ['a', 'c']\n'b'
['a', 'c']\n'b'