#
#
# .2020-08-26 16:44:51
Python
# ., 2020-08-26 16:44:51

How to display the contents of a two-dimensional array without parentheses?

There is a two-dimensional array (list):

x = [
["q", "w", "r", "t", "y"],
["a", "b", "c", "d", "e"],
["l", "c", "b", "r", "y"]
]

How to output each of its contents not in this format:
["q", "w", "r", "t", "y"],
["a", "b", "c", "d", "e"],
["l", "c", "b", "r", "y"]

And in this one:
q, w, r, t, y
a, b, c, d, e,
l, c, b, r, y

Answer the question

In order to leave comments, you need to log in

1 answer(s)
0
0xD34F, 2020-08-26
@andro1

print('\n'.join(map(', '.join, arr)))

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question