码迷,mamicode.com
首页 > 其他好文 > 详细

请从L=[1,10,20,50,20,20,1]中找出重复数。

时间:2018-03-07 13:31:37      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:end   nbsp   body   app   span   gpo   color   class   复数   

 1 L=[1,10,20,50,20,20,1]
 2 L1=[]
 3 for i in L:
 4     if(L.count(i)>1):
 5         L1.append(i)
 6 L2=[]
 7 for i in L1:
 8     if i not in L2:
 9         L2.append(i)
10 print L2

 

请从L=[1,10,20,50,20,20,1]中找出重复数。

标签:end   nbsp   body   app   span   gpo   color   class   复数   

原文地址:https://www.cnblogs.com/Python-XiaCaiP/p/8521517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!