在嵌套循环中只打印一次

时间:2016-01-26 03:17:09

标签: python loops break vpython

我正在模拟穿过不同图层的粒子,一旦它穿过图层,我就想要它打印一些东西。我的问题是粒子可以移回到前一层并再次出来,这会触发它再次打印,我不想要这个。

while math.sqrt((pho.pos.x)*(pho.pos.x)+(pho.pos.y)*(pho.pos.y)+(pho.pos.z)*(pho.pos.z))<10:
    x=random.uniform(-j,j)
    y=random.uniform(-j,j)
    z=random.uniform(-j,j)
    step=(x,y,z)
    t=t+dt
    pho.pos=pho.pos+step
    print 'Step Number', t
    rate(speed)
    d=math.sqrt((pho.pos.x)*(pho.pos.x)+(pho.pos.y)*(pho.pos.y)+(pho.pos.z)*(pho.pos.z))
    '''if d>10:
        print pho.pos 
        print d 
        print 'Out of Layer 1 in',t,'steps!'
        break
    else:
        pass'''
d=math.sqrt((pho.pos.x)*(pho.pos.x)+(pho.pos.y)*(pho.pos.y)+(pho.pos.z)*(pho.pos.z))
print pho.pos
print d
print 'Out of Layer 1 in',t,'steps!'

我不想重复的部分是最后三个打印语句,我尝试过break语句,但是这个代码是一个嵌套循环,当它重新循环时,它会在休息之前重新开始。

2 个答案:

答案 0 :(得分:0)

在任何类pho上,创建一个名为printed的属性,然后将其初始化为False。然后,在第一次打印时将其设置为True,然后说

if d > 10 and not pho.printed

而非if d > 10

答案 1 :(得分:0)

尝试这样的事情。你的代码我认为都应该是while循环的一部分。如果没有,请将out_of_layer移到下一个外循环之前。

out_of_layer = False  

while math.sqrt((pho.pos.x)*(pho.pos.x)+(pho.pos.y)*(pho.pos.y)+(pho.pos.z)*(pho.pos.z))<10:
    x=random.uniform(-j,j)

    ... blah blah stuff you already know about ...

    d=math.sqrt((pho.pos.x)*(pho.pos.x)+(pho.pos.y)*(pho.pos.y)+(pho.pos.z)*(pho.pos.z))
    if not out_of_layer:
        print pho.pos
        print d
        print 'Out of Layer 1 in',t,'steps!'
        out_of_layer = True