I would like to be able to create individual items from a list.
For example
test_list = ["dog", "cat", 12, 34, "boop"]
#code code code
item_1 = "dog"
item_2 = "cat"
item_3 = 12
item_4 = 34
item_5 = "boop"
So I would like to run some loop that goes through the list and creates a new object for each item in the list. Is this possible?