Archive for June 20th, 2008
import life
A console based implementation of Conway’s Game of Life in Python. As fascinating as it is useless. #!/usr/bin/python import sys import random import time import os import copy WIDTH = 32 HEIGHT = 16 class Grid: def __init__(self, width, height): self.width = width self.height = [...]
