Python(36)_循环打印列表中的列表
Posted sunnybowen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python(36)_循环打印列表中的列表相关的知识,希望对你有一定的参考价值。
#-*-coding:utf-8-*- ‘‘‘ 打印列表,遇到列表中的列表也循环打印 ‘‘‘ li = [1,2,3,[1,2,3,5,6],‘hjaha‘] lie = [] #print(type(li[0])) #print(type(li)) for i in li: if type(i) != type(li): print(i) else: for j in i: print(j)
以上是关于Python(36)_循环打印列表中的列表的主要内容,如果未能解决你的问题,请参考以下文章