print([sorted(destinations)].reverse())?
sorted没有reverse方法
s= sorted([1,3,4,6,2]) s.reverse()
@青牛 destinations=[1,3,2,4,5] print(destinations) s=sorted(destinations) print(s) rev=s.reverse() print(rev) 您好,我照您的方法写了一遍,s是可以print的,但是rev是none
运行结果: [1, 3, 2, 4, 5] [1, 2, 3, 4, 5] None
为啥要取rev,s.reverse()就是对s进行倒序了
`单行代码`
关注海汼部落技术社区