Skip to content

Instantly share code, notes, and snippets.

View BensonMuriithi's full-sized avatar

Benson Muriithi BensonMuriithi

  • Kenya
View GitHub Profile
@BensonMuriithi
BensonMuriithi / gameboard.py
Last active July 30, 2016 13:39 — forked from KHerb/gameboard.py
Gameboard Generator
"""Gameboard Generator"""
columns = int(raw_input("How many columns do you want on your gameboard? "))
rows = int(raw_input("How many rows do you want on your gameboard? "))
def gameboard(columns,rows):
column = []
height = []
for i in range(columns):
column.append(" |")
for i in range(columns):