我有一个关于在 Python 中计算循环迭代的快速问题。我创建的对象在每次迭代时都会“老化”,并且应该在某个年龄“死去”,但有时它们的寿命要长得多。这是我的程序的一个片段:
def reproduce():
class Offspring(Species):
def __init__(self,name,life,attack,move,location,status,species,age):
area = 1000
self.name = name
self.life = life
self.attack = attack
self.move = move
self.location = [random.randint(1,area),random.randint(1,area)]
self.status = 1
self.species = 'simple'
self.age = 1
for z in [y for y in petri_dish if y.status == 1 and y.life >= 50 and y.species == 'simple']:
petri_dish.append(Offspring('g' + str(turn/250)+'#'+str(z.name),(random.randint(int(z.life/2),z.life)),(random.randint(int(z.attack/2),z.attack)),(random.randint(int(z.move/2),z.move)),0,1,0,0))
print 'g' + str(turn/250)+'#'+str(z.name), 'was born.'
def move_around():
for x in list(petri_dish):
x.age += 1
if x.status == 0 or (x.species == 'species' and x.age >= 750) or (x.species == 'predator' and x.age >= 3000):
print str(x.name) + ' expired. Cells left: ' + str(len(petri_dish))
petri_dish.remove(x)
else:
x.relocate()
x.target()
if len(petri_dish) >= 75:
for x in list(petri_dish):
if x.life < int(turn/25):
x.status = 0
if turn % 250 == 0:
reproduce()
while len([y for y in petri_dish if y.status == 1]) > 1:
turn += 1
move_around()
后代类是一个simple
物种,应该在 750 岁或以上时死亡——理想情况下正好是 750 岁,但这是问题的一部分。我还没有弄清楚如何迭代我的对象列表(the petri_dish
),并且在迭代中的任何时候删除某些对象,无论它们是处于status = 0
(死亡)还是已经充分老化。
抱歉,如果这是一个简单的问题,但循环不是我的强项……我一直在阅读理解等内容,但任何其他材料也将不胜感激。更不用说回答我的问题了!非常感谢。