What is the best way to generate empty, named lists? Do they need to be created manually? I had hoped the following would work:
fieldlist = ['A', 'B', 'C']
for fieldname in fieldlist:
str(fieldname) + 'list' = []
Actual result:
File "<interactive input>", line 2
SyntaxError: can't assign to operator
Desired result:
Alist = []
Blist = []
Clist = []