I have a multiple lines like
NO = """###
###
###"""
LR = """###
###"""
and i have an array = [NO, LR]
i need to print it line by line. I try
for i in array:
print i,
it print
###
###
### ###
###
but i need this:
######
###
######
thanks for help.