SyntaxFix
Write A Post
Hire A Developer
Questions
Seems to work here:
>>> a=[[1,1],[2,1],[3,1]] >>> a [[1, 1], [2, 1], [3, 1]] >>> a[1] [2, 1] >>> a[1][0] 2 >>> a[1][1] 1