What is the output of the following code?
t = ['a', 'b', 'c'] del t[1] print(t)
C) ['a', 'b']
['a', 'b']
Error
D) ['a', 'c']
['a', 'c']
B) ['b', 'c']
['b', 'c']