What is a nested list ?
3 Likes
A list that has one or more lists as its elements is a nested list.
Answered By
1 Like
What is a list comprehension ?
What is a 2D list ?
Is Ragged list a nested list ?
What will be the output of the following Python code ?
a = [10,23,56,[78, 10]] b = list(a) a[3][0] += 17 print(b)