I'm new to this so my title may be misleading and/or make no sense.
I have 32 objects I want to initialize with a loop. I have the desired names of the objects in one list, call it A. And the desired values in one list, call it B.
i want to do something like:
for(a,b) in zip(A,B):
a = b
Obviously this won't work, as it will just change the contents of list A.
For clarity, if list A was defined like:
A = [
'Game'
'Developer'
]
and B like:
B = [
'Super Mario 64'
'Nintendo'
]
I would want a loop that would execute the code:
Game = 'Super Mario 64'
Developer = 'Nintendo'
How do I do this?