InterviewSolution
Saved Bookmarks
| 1. |
What is a nested list ? _________________________________________Thnx♡=Thnx♡ |
|
Answer» ONG>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). |
|