I have a list which, lets say it looks like this:
alist = ["apple", "tea", "oranges"]
What I want python to do now is take each attribute and create an empty list out of it. So basically this:
apple = []
tea = []
oranges = []
How can I accomplish this?