Roelof Wobben wrote: > I changed a lot because of your suggestions. > But one thing is still a puzzle. > The robots don't move anymore. > > What I have is this : > robots = [] > place_robots(4) > move_robots(robots, player) You are only moving the robots in the 'robots' list. But that list is empty. Peter