from this starting point:
matrix = [[0 for x in range(5)] for y in range(3)]
I need to make this:
|0 0 0 0 0|
|0 0 0 0 0|
|0 0 0 0 0|
+-+-+-+-+-+
0 1 2 3 4
I have been trying .append and .replace to try and get the final result but nothing is going right.