请写出一段python代码实现删除list里面的重复元素?

l1 = ['b','c','d','c','a','a']
l2 = list(set(l1))
print(l2)
原文地址:https://www.cnblogs.com/sea-stream/p/11192557.html