Posted on 28th April 2025|46 views
i want to know the process of making list of lists in python
Posted on 28th April 2025| views
We can make a list of lists in Python by using square brackets, for example, if we want to build a list of lists of integer values then use [[4,5],[6,7]]. Every list element of the outer list implies a nested list itself.