What is the best way to create multiple list from a dictionary? My dictionary looks like this:
mydict = {'aaa': ['111', '222', '333'], 'bbb': ['444', '555']}
I'm trying to make lists like this:
aaa ['111', '222', '333']
bbb ['444', '555']
...
I've tried
result = []
For key, value in mydict.item()
result[key].append(value)
This returns a type error.