gpt4 book ai didi

python - Python 中的嵌套 While 循环

转载 作者:行者123 更新时间:2023-11-28 19:30:32 26 4
gpt4 key购买 nike

我是 python 编程的初学者。我编写了以下程序,但它没有按照我的意愿执行。这是代码:

b=0
x=0
while b<=10:
print 'here is the outer loop\n',b,
while x<=15:
k=p[x]
print'here is the inner loop\n',x,
x=x+1
b=b+1

有人可以帮帮我吗??我将不胜感激!问候,吉拉尼

最佳答案

不确定您的问题是什么,也许您想将 x=0 放在内部循环之前?

你的整个代码看起来一点也不像 Python 代码......像这样的循环最好像这样完成:

for b in range(0,11):
print 'here is the outer loop',b
for x in range(0, 16):
#k=p[x]
print 'here is the inner loop',x

关于python - Python 中的嵌套 While 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1421323/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com