Computer Science
What is a two dimensional list ? How is it related to nested lists ?
Linear Lists
1 Like
Answer
A two dimensional list is a list having all its elements as lists of same shapes, i.e., a two dimensional list is a list of lists. A two dimensional list is also a nested list, as it involves nesting one list inside another.
Answered By
2 Likes
Related Questions
In which situations should you use list comprehensions and in which situations you should not use list comprehensions ?
What is a nested list ? Give some examples.
Suggest a situation where you can use a regular two dimensional list.
What are ragged lists ? How are these different from two dimensional lists ?