运行下方代码段,输出的结果是( )。
a=[3,7,4,6,2,5]
a.sort(reverse=True)
print(a[3:])
[4, 3, 2]
[5, 6, 7]
[5, 4, 3, 2]
[4, 5, 6, 7]