I remember I once seen a operator which is able to decompose a list in python.
for example
[[1],[2],[3]]
by applying that operator, you get
[1], [2], [3]
what is that operator, any help will be appreciated.
|
|
|
If you want to pass a list of arguments to a function, you can use
If you want to assign the contents of a list to a variable, you can list unpacking:
|
|||||
|
|
You can use the
|
|||||||
|
|
This can be achieved by running You may also find this question on flattening shallow lists relevant. |
|||||
|
|
The correct answer to the OP's question: "what is that operator" which transforms the list
gives the same result as
This may not be what the OP wanted but it is the correct answer to the question as asked. |
||||
|
|