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

以下哪个选项可以实现列表的去重?

Alist = list(set(list))
Blist = list(dict.fromkeys(list))
Clist = [x for x in list if list.count(x) == 1]
Dall of the above