I'd like to create a bunch of empty lists and name them thru iterations, but the code keeps error out showing "SyntaxError: can't assign to operator". My purpose is to create lists named 5R05D, 15R05D, 15R20D etc.. Appreciate for any help!
MA = ['5','15','30','60']
For each in MA:
each+'R05D'=[]
each+'R10D'=[]
each+'R20D'=[]