What rule does this violate in python?
for i in range(12):
'Array'+str(1)=[]
To me this should make 12 empty arrays named Array0 - Array12. However, I receive
SyntaxError: cannot assign to operator
What logic is this violating?
I'm thinking it might be reading this as
str(i)=[]
or that
'Array'+ str(i) is equal to []
Could someone confirm one or the other?