https://github.com/garrett928/game_of_lfife_py
An attempt to recraete Conway's game of life in python. The project uses pygame for graphics and is built in pycharm.
https://github.com/garrett928/game_of_lfife_py
Last synced: 2 months ago
JSON representation
An attempt to recraete Conway's game of life in python. The project uses pygame for graphics and is built in pycharm.
- Host: GitHub
- URL: https://github.com/garrett928/game_of_lfife_py
- Owner: garrett928
- Created: 2019-02-23T03:22:47.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-23T03:42:19.000Z (about 6 years ago)
- Last Synced: 2024-12-31T22:25:57.048Z (4 months ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# game_of_lfife_py
This is my first python project. The project's goal is to recreate Conway's Game of Life.
You can read [here](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) to find out more about the
game, which is in the class of [Cellular Autonoma](https://en.wikipedia.org/wiki/Cellular_automaton).
You can visit [here](https://bitstorm.org/gameoflife/) to play the game in your browser, or checkout
[Coding Train](https://www.youtube.com/watch?v=FWSR_7kZuYg) on YouTube to see both a better explanation and implamentation of the game.At the moment the code is a small mess. I'm not really sure how to use pygame "correctly".