I have a list like this
x = [['a','b','c','d']]
and I want to print all the elements in it like
a
b
c
d
I have a list like this
x = [['a','b','c','d']]
and I want to print all the elements in it like
a
b
c
d
x = [['a','b','c','d']]
print('\n'.join(map(str, x[0])))
result will be
a
b
c
d