Python 中列表&元組去重的一種方法

Set 集合 可以存儲多個值,不能重複相同數據, List 列表 Tuple 元組 案例:列表去重 a=[11,22,33,44,33,11,22] b=set(a) b set([33, 11, 44, 22]) type(b) <type ‘set’> type(b) <type ‘set’> c=list(b) c [33, 11, 44, 22] 案例:元組去重 元組,列表,集合可以相互轉
相關文章
相關標籤/搜索