0
How to join two lists in Python to form a single list ? For example, I have this list [[1, 0, 0, 0], [1, 1, 1, 0], [1, 0, 0, 0]]
and I want to join her with [[1, 0, 1, 0], [1, 0, 1, 1]]
.
I want the result of this junction to be the following list:
[[1, 0, 0, 0], [1, 1, 1, 0], [1, 0, 0, 0], [1, 0, 1, 0], [1, 0, 1, 1]]
But he’s getting that way:
[[1, 0, 0, 0], [1, 1, 1, 0], [1, 0, 0, 0], [[1, 0, 1, 0], [1, 0, 1, 1]]