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