KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

In Python, you cannot change the sequence of the index value of a list.

Python List Manipulation

1 Like

Answer

True

Reason — The index values of a list are fixed and are automatically assigned starting from 0 in sequence. While the elements of a list can be changed or rearranged, the sequence of index values itself cannot be changed.

Answered By

1 Like


Related Questions