首页
IT
登录
6mi
u
盘
搜
搜 索
IT
python 中list去重函数
python 中list去重函数
xiaoxiao
2021-12-14
18
简单的去重函数
def unique(list): newlist = [] for x in list: if x not in newlist: newlist.append(x) return newlist
转载请注明原文地址: https://ju.6miu.com/read-971691.html
专利
最新回复
(
0
)