如何同时在 Python 中使用多个 for 和 while 循环?
你可以在 Python 中轻松创建嵌套循环。你甚至可以在 while 循环内部嵌套一个 for 循环或者反过来。例如,
for i in range(5): j = i while j != 0: print(j, end=', ') j -= 1 print("")
这会给出输出
1, 2, 1, 3, 2, 1, 4, 3, 2, 1,
你可以将此嵌套到任意多个级别。
广告
你可以在 Python 中轻松创建嵌套循环。你甚至可以在 while 循环内部嵌套一个 for 循环或者反过来。例如,
for i in range(5): j = i while j != 0: print(j, end=', ') j -= 1 print("")
这会给出输出
1, 2, 1, 3, 2, 1, 4, 3, 2, 1,
你可以将此嵌套到任意多个级别。