For example, I have 2 lists ['name', 'age', 'id']
and ['John', '20', '441']
.
I want to get output:
name = John
age = 20
id = 441
That is, from the elements of 1 list to make the names of variables. Given that the elements of list 1 are always different.
Update: I want to get a variable name
with value "John", age
with value '20' and etc.