It's probably obvious that I'm a beginner to python, and even newer to stack overflow, so apologies for any mistakes in this post. I have an array of 35 indexes (it starts at zero), it's a 'screen' 9 by 4. I want to print the screen, and have a new line after every row.
screen = ["-", "-", "-", "-", "-", "-", "-", "-", "-",
"-", "-", "-", "-", "-", "-", "-", "-", "-",
"-", "-", "-", "-", "-", "-", "-", "-", "-",
"-", "-", "-", "-", "-", "-", "-", "-", "-"]
I assume I can do this using a for loop somehow, but I'm not experienced enough to do it without some help.