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