InterviewSolution
Saved Bookmarks
| 1. |
What is neasted list |
|
Answer» A nested list is simply a list that OCCURS as an element of another list (which may of course itself be an element of another list, etc.). Common REASONS nested LISTS arise are: They're matrices (a list of ROWS, where each row is itself a list, or a list of COLUMNS where each column is itself a list). |
|