Question #869

Lists cannot be nested.

Lists can be nested. print([1, 2, 3, [1, 2]]) will output [1, 2, 3, [1, 2]] . No problems there! (askpython.com/python/list/python-list)


Comment on Disqus:

Question difficulty: 🔵🔵🔵🔵🔵