About • Rules • Installation • Technologies
Conway's Game Of Life is a cellular automaton devised by the British mathematician John Horton Conway in 1970. This simulation of Conway's Game Of Life is made using python with pygame.
- Any live cell with fewer than two live neighbors dies, as if by under population.
- Any live cell with two or three live neighbors lives on to the next generation.
- Any live cell with more than three live neighbors dies, as if by overpopulation.
- Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.
- Download the repository
- Run main.py
- Click on random squares to change the state of that square
- Hit Enter to start/pause the simulation
- python
- pygame
- numpy