首页题库练习题目详情
Python程序设计单选题中等

下列哪条语句可以将列表中的元素顺序反转?

Alist.reverse()
Blist = list[::-1]
Clist.sort(reverse=True)
Dall of the above