I want to take a list like this
mylist = [['_','X','_'],['X','_','_'],['X','_','_']]
and display it like this:
_ X _
X _ _
X _ _
would I use 2 nested loops and build a string?
mystring=''
for line in mylist:
   for char in line:
       mystring += char + ' '
   mystring += '\n'
screen.addstr(mystring,0,0)
 
     
    