SyntaxFix
Write A Post
Hire A Developer
Questions
50 - List1[0][0] + List[0][1] - List[0][2]
List[0] gives you the first list in the list (try out print List[0]). Then, you index into it again to get the items of that list. Think of it this way: (List1[0])[0].
List[0]
print List[0]
(List1[0])[0]