etinaude / Conways-game-of-life

Python script for conways game of life

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Conways-game-of-life

Conways game of life is a 0 player game based on a grid where there are 2 options for colors of each cell, reperesenting either "alive" or "dead". where there are 4 rules.

  • Any live cell with fewer than two live neighbours dies, as if caused by underpopulation
  • Any live cell with two or three live neighbours lives on to the next generation
  • Any live cell with more than three live neighbours dies, as if by overpopulation
  • Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction

feel free to branch or contact me for any more information.

About

Python script for conways game of life

License:GNU General Public License v3.0


Languages

Language:Python 100.0%