a = [3,7,4,9]
a = sorted(a,reverse=True)
print(a)#[9, 7, 4, 3]

相关文章: