我是一名Python編程初學者。我寫了下面的程序,但沒有按照我的要求執行。這裏是代碼:在Python中嵌套while循環
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
有人可以幫助我?我會很感激! Regards, Gillani
你想要它做什麼?解釋更多 – 2009-09-14 12:46:27
輸出是什麼?你期望它是什麼? – erelender 2009-09-14 12:49:35
你想要什麼代碼? – ariefbayu 2009-09-14 12:49:48