当前位置:脚本大全 > > 正文

pythonfor循环如何遍历嵌套列表(在Python中,不用while和for循环遍历列表的实例)

时间:2022-01-26 01:30:39类别:脚本大全

pythonfor循环如何遍历嵌套列表

在Python中,不用while和for循环遍历列表的实例

如下所示:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • a = [1, 2, 3, 8, 9]
  • def printlist(l, index):
  •   if index == len(l):
  •     return
  •   else:
  •     print(l[index])
  •     printlist(l, index + 1)
  •  
  • printlist(a, 0)
  • *****for和while循环底层用的是递归实现的

    以上这篇在Python中,不用while和for循环遍历列表的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持开心学习网。

    原文链接:https://blog.csdn.net/a289237642/article/details/81146503

    上一篇下一篇

    猜您喜欢

    热门推荐