printBoard: A call to this function with
printBoard(5,4,[1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0])
would print the following output to standard output:
|-----------|
| 1 0 0 1 0 |
| 0 0 0 0 0 |
| 0 0 0 0 0 |
| 0 0 0 0 0 |
|-----------|
def board(l,h,list): %a length, and a height, and a single list of integers/strings,
board =rawinput();