标签:for循环 pytho set st3 class not 推荐 红楼梦 highlight
list1 = [1, 2, 3, 1, 2, 3, 4, "三国演义", "西游记", "三国演义", "红楼梦"] # 对列表去重,方法一:采用set() # 此方法得出的列表的顺序是无序的,单纯的去重可行;如果需求是去重后按照顺序展示则不推荐。 list2 = list(set(list1)) print(list2) # 对列表去重,方法二:采用for循环 # 先构造一个空列表,把元素追加到空列表中。 list3 = list() for i in list1: if i not in list3: list3.append(i) print(list3)
标签:for循环 pytho set st3 class not 推荐 红楼梦 highlight
原文地址:https://www.cnblogs.com/Gary1221/p/12885881.html