You can assign multiple values to list items with the multiple assignment trick also called tuple unpacking. This is a shortcut technique as opposed to assigning each variable individually.
>>> cat = ['fat', 'gray', 'loud']
>>> size, color, disposition = cat
>>> cat
['fat', 'gray', 'loud']
>>> size
'fat'
>>> color
'gray'
>>> disposition
'loud'
>>>