Repository for a retro Pac-Man game, programmed with Python.
This is repository contains a Pac-Man simulation. Use your keyboard to move around the maze and eat all the dots in the map. Ghosts all around! Be aware. It must look like this when your run the code:
- Python 3.7.7
- Freegames 2.3.2
- Turtle and random were included with Python.
To properly run (and play) this game, you'll need to import some Python packages: freegames, random and turtle. As seen on this part of the code:
from random import choice
from turtle import *
from freegames import floor, vectorThis code is already finished.
This proyect is inspired by the Pac-Man game code at Grant Jenks website.