📌  相关文章
📜  Python 从列表中删除重复项 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:31.939000             🧑  作者: Mango

代码示例6
# get unique items in list aa with order maintained (python 3.7 and up)
list(dict.fromkeys(aa))