I'm taking an introductory course to computer science using Python and we were given an exercise to make a board game(dogems). I'm having troubles constructing the board. The program is suppose to take a given argument and, using a function make_board(size), constructs a board of equal rows and columns with numbers along the bottom and letters along the side. A function show_board(board) then displays it. e.g. Board size:4 would give:
a . . .
b . . .
c . . .
. 1 2 3
whereas, a board size:5 would give:
a . . . .
b . . . .
c . . . .
d . . . .
. 1 2 3 4
My question is basically, how would I go about writing these functions to construct a board of this nature?
Try starting with something really simple, like printing out just the bottom row:
That's pretty easy
Now what if I want to have a variable sized board?
Let's try a loop
Note that you need a variable length.
Ok what about the columns? These are letters, how can we print a variable length list of letters?
As you tackle these little problems one by one, you will start to realize what variables become apparent. Maybe you decide that storing a list of lists is the best way to do it, so
make_board(size)
returns something like a list of of lists of characters, andshow_board(board)
uses a for loop within a for loop to print it all out.Don't expect the finished solution from StackOverflow, try doing some of this stuff and ask a question when you really get stuck!