How to access elemenst in a list of lists? Python Python
- I can see that I can address an individual element of a list of lists by doing something like:
row = list[5]
element = row[3]
But is there a way to directly address an entry in a single statement?
-Yep!
element = list[5][3]











