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