I have two lists, one a list with a set of strings, and another list with a set of various values of strings or numbers.
I want to make each value from the first list to be a new variable with the same name and set its value to a value from the second list with the same position in the list.
So for example,
list_1 = ['Part_Number', 'Qty']
list_2 = ['RE12345', 5]
# into something like this
Part_Number = 'RE12345'
Qty = 5