Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 683 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 683 Bytes

PyGameOfLife

The game of life is a well known cellular automata where only 2 state of cells comes into play, and with just a few rules demonstrates itself that, based on the initial conditions, it generates a lot of mesmerizing patterns throughout the game field.

This game was created by the mathematician John Conway back in 1970, 50 years ago, as a result, a lot of math lovers have tried to visualize it in a lot of different platforms.

Installation

To install and test it by yourself follow this commands

git clone https://github.com/LLIAJIYH/PyGameOfLife.git
cd PyGameOfLife
pip3 install -r requirements.txt
python main.py

Tested on Python 3.9.5