We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7643dd commit d115272Copy full SHA for d115272
README.md
@@ -1,4 +1,20 @@
1
Conway-s-Life-in-Python
2
=======================
3
4
+TO RUN:
5
+ python3 pylifeGUI.py
6
+
7
8
John Conway's famous cellular automation game "Life"
9
10
+The rules of Life are very simple.
11
+You start with a rectangular array of cells.
12
+Each cell is either “alive” (black) or “dead” (white). Initially, all cells are dead.
13
14
+Every cell has eight neighbors. To make a new generation, apply these rules to each cell:
15
16
+(a) If the cell is alive and has fewer than two or more than three living neighbors, the cell dies (from loneliness or overcrowding, respectively).
17
18
+(b) If the cell is dead and has exactly three living neighbors, the cell revives.
19
20
0 commit comments