python --遍历

Posted 深夜小清新

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python --遍历相关的知识,希望对你有一定的参考价值。

一、判断列表中的元素是否存在重复

使用set方法去重后,和原list进行对比,如果相等,那么说明原列表无重复,如果存在重复,说明列表存在重复

 1 def is_repect_all(L):
 2     repeatList = [];
 3     setList = set(L);
 4     flag=True;
 5     if len(L) != len(setList):
 6         flag=False;
 7         print(列表的id存在重复,其中重复项及重复次数如下:);
 8         for each_item in setList:
 9             re_count = 0;
10             for each_item_L in L:
11                 if each_item == each_item_L:
12                     re_count += 1;
13             if (re_count >= 2):
14                 print(each_item, L.index(each_item), ": ", re_count);
15 
16                 # print(all_gameid_List[L.index(each_item)]);
17         return flag,re_count;
18 
19     else:
20         return flag;

二、

以上是关于python --遍历的主要内容,如果未能解决你的问题,请参考以下文章

Python开发

Python 介绍

Python学习之认识python

python初识

Python 线程池模块,Python 多线程

如何切换python版本