Sequence
•
A sequence is an ordered thing that you can index
•
Indexing is 0-based (i.e.: an index is an offset)
•
Negative indices count from the end
>>> a = [‘apples’, ‘oranges’, ‘pears’]
>>> a[0]
‘apples’
>>> a[1][1]
‘r’
>>> a[-1]
‘pears’