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