Table of Contents
show
- Lists are mutable
- The value of any element inside the list can be changed at any point of time
- The elements of the list are accessible with their index value
- The index value starts with 0 and ends with n-1, if the list contains ‘n’ elements
Syntax
list[index] = item
Example
Views: 0