Game of life

Simple realization Conway's game of life on Python.

Classic rules B = 3, S1 = 2, S2 = 3 can be changed on:

game-of-life/main.py

Lines 9 to 11 in 79d17a2

B = 3
S1 = 2
S2 = 3

Controls

Left mouse button for add cell on gamefield, space for run\pause simulation.

View

2022-08-14 17-50-01

How to run

git clone https://github.com/mosvlad/game-of-life
pip install -r requirements.txt
python main.py