If you're just looking to iterate over a flattened version of the data structure and don't need an indexable sequence, consider itertools.chain and company.
>>> list_of_menuitems =[['image00','image01'],['image10'],[]]>>>import itertools
>>> chain = itertools.chain(*list_of_menuitems)>>>print(list(chain))['image00','image01','image10']