码迷,mamicode.com
首页 > 编程语言 > 详细

写一个段落python代码推理list深浅

时间:2015-10-10 09:06:03      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:

主要是针对嵌套列表问题。

列表套列表,究竟子列表那个更深。。。

这个问题想着就烦。假设嵌套10000万个列表是不是要统计10000个数再排序呢?


最后想了想用 list的extend功能 加上递归函数尝试了一下,代码例如以下:


l1=[1,‘a‘,[1],[2,3,[4,5,[6,7,[7]]]],[2,5,[5,6]],[4],[5],[6]]

#l1 = [1, 2, [3, [4, 5], 6, [7, 8,[9, 10], 11], 12], 13]
count = 1

def func(l):
    global count
    
    temp_list = []
    for l2 in l:
        if isinstance(l2,list)==True:
            temp_list.extend(l2)
    if len(temp_list)>0:
        count +=1
        func(temp_list)
        
            

func(l1)
print count


版权声明:本文博主原创文章,博客,未经同意不得转载。

写一个段落python代码推理list深浅

标签:

原文地址:http://www.cnblogs.com/hrhguanli/p/4865690.html

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