Access List Element

print(mylist[0])
print(mylist[-1])

Index Range

print(mylist[1:3])

Index range is determined with determining where it must start and where it must end the range. When determining range, the value will be returned will be a new list with new item that is determined.

Note: When doing Index Range, for example above. The last number won’t be included.

Implementation

Modification List