在Python中,不用while和for循环遍历列表 在Python中,不用while和for循环遍历列表的实例
a289237642 人气:0如下所示:
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循环遍历列表的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
加载全部内容