Lists In Python - Part 2

Ryan Simethy
Jun 10, 2021

We will go through a multi dimensional list which is comparable to a multidimensional array in Java. For a multidimensional list, you put lists(these are your column) or dictionaries (this again will be your column) within a list( these are your row)

Psuedocode:

Python Code (dictionaries within a list):

Another option is to use lists within a list:

--

--