So here's my code. I separated the items in the list and printed them:
mylist = [["Orange", "Banana"], ["Grape", "Orange", "Apple"]]
for s in mylist:
print '\n'.join(s)
Orange
Banana
Apple
Grape
Orange
But I want the list alphabetized. I've tried this, but it only sorts the items within their nests:
for s in mylist:
print '\n'.join(sorted(s))
Banana
Orange
Apple
Grape
Orange
How do you print and sort items in a nested list all together?