https://github.com/progambler227788/conway-game-of-life
Conway's Game of Life implementation in Python, with customizable initial patterns and interactive gameplay.
https://github.com/progambler227788/conway-game-of-life
coding-challenge game game-of-life maths python python-assignment python-project python3
Last synced: about 1 month ago
JSON representation
Conway's Game of Life implementation in Python, with customizable initial patterns and interactive gameplay.
- Host: GitHub
- URL: https://github.com/progambler227788/conway-game-of-life
- Owner: Progambler227788
- Created: 2023-03-28T20:12:28.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-04-08T19:29:37.000Z (about 1 month ago)
- Last Synced: 2025-04-10T23:48:20.423Z (about 1 month ago)
- Topics: coding-challenge, game, game-of-life, maths, python, python-assignment, python-project, python3
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Conway's Game of Life
Conway's Game of Life implementation in Python, with customizable initial patterns and interactive gameplay.
Game of Life in Python
This is an implementation of Conway's Game of Life in Python. The game is a classic example of a cellular automaton, where the state of each cell is determined by its neighbors in a grid. The game follows simple rules, but can produce complex and interesting patterns.Usage
To use the program, run main() in a Python interpreter. The program will ask you to choose one of three initial patterns to start the game. You can then choose to see the next pattern or end the game.Requirements
The program requires Python 3 to run.