CBSE Class 12 Computer Science Question 108 of 120

Review of Python Basics — Question 3

Back to all questions
3
Question

Question 3

List slice is a list in itself.

Answer

True

Reason — A list slice in Python creates a new list object that contains elements from the original list based on the specified indices or slice parameters. This new list is both a list in itself and a subset of the original list.