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