Created
September 24, 2012 21:15
-
-
Save jiffyclub/3778422 to your computer and use it in GitHub Desktop.
Conway's Game of Life in an IPython Notebook
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To make this work in Python 3, replace all
xrange
withrange
(3 replacements) and also replacelength/2
withlength//2
. Then it works fine in Python 3.8.