>>> mylist = [['dog', 'animal'],['daisy','flower'],['cat','animal']]
>>> x = mylist[2][1]
>>> print x
animal
4
solved How to Retrieve a Specific value from a Specific List inside a Larger List?
>>> mylist = [['dog', 'animal'],['daisy','flower'],['cat','animal']]
>>> x = mylist[2][1]
>>> print x
animal
4
solved How to Retrieve a Specific value from a Specific List inside a Larger List?