SyntaxFix
Write A Post
Hire A Developer
Questions
If you have this :
a = [[1, 1], [2, 1],[3, 1]]
You can easily access this by using :
print(a[0][2]) a[0][1] = 7 print(a)