I have a an Enemy class, so my first object is:
enemy1 = Enemy()
Now I need to make a lot of enemies with names like this:
enemy1 = Enemy()
enemy2 = Enemy()
enemy3 = Enemy()
enemy4 = Enemy()
How can I make a loop that basically does this:
for i in range(1, 5)
enemy + i = Enemy()
What's the simplest way to do this?