+ 1
Tuple by default? Lists inside of lists
I created a small matrice with lists inside of lists but it's a tuple by default, why is this?
2 Answers
+ 6
That doesn't happen.
Can you show us the code?
+ 3
Also if you have a tuple, you can make it a list by list()
t = (1,2,3)
t = list(t)
print(t)
[1,2,3]