Consider the following code:
s = [63, 72, 21, 90, 64, 67, 34]
s.sort(reverse = True)
print(s)
What is output?
[21, 34, 63, 64, 67, 72, 90]
[90, 72, 67, 64, 63, 34,21].
[63, 72, 21, 90, 64, 67, 34]
[34, 67, 64, 90, 21, 72, 63]