Skip to content

PrivateiFox/Game-of-life-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game of life

Random board with cells dead (black) and alive (white)
Iterates row on column.

Roles:

  • If a cell is dead and has exactly three neighbors that are alive, it turns alive.
  • If a cell is alive and has either two or three neighbors that are alive, it remains alive.
  • If a cell is alive and has fewer than two neighbors that are alive, it dies.
  • If a cell is alive and has more than three neighbors that are alive, it dies.

Photos:

Initialized board
Done
Result

About

Tkinter example of game of life

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%