下面代码的输出结果是?( )
a = [5,1,3,4]
print(sorted(a,reverse = True))
[5, 1, 3, 4]
[5, 4, 3, 1]
[4, 3, 1, 5]
[1, 3, 4, 5]