how about this
def display(x):
for i in x:
for j in i:
j = chr(j)
print (j, end = ' ')
print()
if each i
represent a line, you need add a extra print to start over in the next line
1
solved Printing a smile face 🙂