birds = ["turkey", "hawk", "chicken", "dove", "crow"]
bird = []
for animal in birds:
    if animal.startswith("c"):
        birds.remove(animal)
    else:
        bird.append(animal)
print (birds)
print (bird)
why the outcome of birds and bird is difference?!?!
