Python嵌套循环奇怪地工作

时间:2014-12-31 01:42:55

标签: python nested-loops

我在python中有一点问题,我写了一个嵌套循环,当我执行我的脚本时,我的第二个循环完全忽略了第一个循环......

    while 1 <= 5:
        for num in range(1, 10):
            print "test"
            i +=1
        k+=1

1 个答案:

答案 0 :(得分:2)

我认为您打算使用k来控制while循环。改为:

# you can give k or i a default value here as you like
k = 0
i = 0
while k <= 5:
    for num in range(1, 10):
        print "test"
        i +=1
    k+=1