>>> movies =[
"the holy grail", 1975,"terry jones",91,
["graham chapman",
["michel palin","john cheelse","terry gilliam","eric idle","terry jones"]]]
>>> def print_lol(the_list):
for each_item in the_list:
if isinstance(each_item,list):
print_lol(each_item)
else:
print(each_item) >>> print_lol(movies)
the holy grail
1975
terry jones
91
graham chapman
michel palin
john cheelse
terry gilliam
eric idle
terry jones
相关文章
- 03-12python中查询数据库时fetchone()函数和fetchall()函数的区别
- 03-12Python的hasattr() getattr() setattr() 函数使用方法详解
- 03-12Python: 字符串格式化format()函数的使用
- 03-12python学习Day12 函数的默认值、三元表达式、函数对象(函数名)的应用场景、名称空间与作用域
- 03-12python – 用带符号输出的符号输出函数求和
- 03-12Python:使用sympy.sympify对数学函数执行安全的eval()
- 03-12PYTHON调用C接口(基于Ctypes)实现stein算法最大公约数的计算
- 03-12选择目录,选择文件夹的COM组件问题。在可以调用 OLE 之前,必须将当前线程设置为单线程单元(STA)模式。请确保您的 Main 函数带有 STAThreadAttribute 标记。 只有将调试器附加到该进程才会引发此异常。
- 03-12python 读不同编码的文本,传递一个可选的encoding 参数给open() 函数
- 03-12python – lambda函数返回在defaultdict中使用的键值