Q:Python如何快速实现列表去重?

A:set用法。
l = [1,4,5,5,5,6,4,3]
a = set(l)

list(a)
输出:[1,4,5,6,3]