Possible Duplicate:
Python: Adding element to list while iterating
This doesn't seem to work, but I am not sure why:
for n in poss:
poss.append(n+6)
Is there some rule that says I can't append items to a list that I am currently looping through?