There are two types of list in Python, [[x], [y], [z]]
and [x, y, z]
. At least in the variable explorer both are stated as "list".
What is the difference? Can I work with them together? How can I transfer one into the other to actually work with them together?