KnowledgeBoat Logo

Computer Science

List slice is a list in itself.

Python List Manipulation

1 Like

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.

Answered By

1 Like


Related Questions