0
How to add var to the list in other list?
I have a list a = [0,1,2,[0,1,2,3]] how I can add var 4 into list in list with command append? sorry for my english)
1 Answer
+ 5
a[3].append(4)
I have a list a = [0,1,2,[0,1,2,3]] how I can add var 4 into list in list with command append? sorry for my english)