for family in city.familyList:
for member in family.membersList:
if member.sex == "male":
if member.status == "eligible":
print "There were", len(family.membersList), "members of family", family.familyName
family.membersList.remove(member)
print "Now there are", len(family.membersList), "members of family", family.familyName
member.status = "needs a wife"
print member.firstName, member.status
print "There were", len(city.familyList), "families"
city.familyList.append(Family(member.lastName, member))
print "Now there are", len(city.familyList), "families"
With this code I am attempting to iterate through a list of family members, locate males over 18, remove them from their family, and start their own family. If I comment out the append at the end of the loop it works fine (without increasing the number of families, of course). This is what it looks like if I perform the append:
Ticking Disan
There were 5 members of family Evnes
Now there are 4 members of family Evnes
Gregor needs a wife
There were 6 families
Now there are 7 families
There were 7 members of family Bhworth
Now there are 6 members of family Bhworth
Ewan needs a wife
There were 7 families
Now there are 8 families
debugger.run(setup['file'], None, None)
File "C:\Users\Mark\Desktop\eclipse-SDK-3.7.2-win32\eclipse\plugins\org.python.pydev.debug_2.5.0.2012040618\pysrc\pydevd.py", line 1060, in run
pydev_imports.execfile(file, globals, locals) #execute the script
File "C:\Users\Mark\workspace\WorldPop\WorldPop.py", line 610, in <module>
main()
File "C:\Users\Mark\workspace\WorldPop\WorldPop.py", line 74, in main
done = menu()
File "C:\Users\Mark\workspace\WorldPop\WorldPop.py", line 77, in menu
genWorld()
File "C:\Users\Mark\workspace\WorldPop\WorldPop.py", line 116, in genWorld
dispWorld(oneWorld)
File "C:\Users\Mark\workspace\WorldPop\WorldPop.py", line 135, in dispWorld
displayTick(world)
File "C:\Users\Mark\workspace\WorldPop\WorldPop.py", line 317, in displayTick
calcMarriage(city)
File "C:\Users\Mark\workspace\WorldPop\WorldPop.py", line 359, in calcMarriage
for member in family.membersList:
TypeError: iteration over non-sequence
I realize that the problem comes when the for loop cycles back to the beginning to search through a new memberList, I just don't see why performing the append is breaking the loop. Any insight is greatly appreciated.
Familyincity.familyList.append(Family(member.lastName, member)), itsmemberListis not a proper list for some reason. Maybe there's a bug inFamily.__init__?