# a python list of lists holding my list of lists
mackenzies_lists = [
[
"songs i think are perfect",
[
"Cannock Chase - Labi Siffre",
"Daisy Lady - 2012 Remaster - Tír na nÓg",
"Bad Decisions - The Strokes",
# ... 59 more songs
]
],
[
"what can't she do",
[
"cook very well",
"horseback riding",
"do and put the laundry away in one sitting",
"open my eyes underwater",
"remember to put my airpods back in the case properly"
]
],
[
"things i like",
[
"turbulence",
"airships",
"sudoku",
# ... 17 more things
]
],
[
"library of alexandria",
["coming soon..."]
],
[
"book recommendations",
["coming soon..."]
]
]
# you get it
interactive console
try querying the data structure yourself
Python 3.11.0 (main, Jan 2026) :: mackenzie's lists
>>> mackenzies_lists
<list object containing 5 lists>
>>>
hints: try mackenzies_lists[0], mackenzies_lists[1][1], len(mackenzies_lists), mackenzies_lists[0][0], or help()