I have a list of users, and I want to get the followees of each user in the list. I want to save the followees in a different variable for each user.
USER = "x"
profile = instaloader.Profile.from_username(L.context, USER)
x = list(profile.get_followees())
So, the loop should pick an element for the list (let's name it x), assigning it to USER, execute the following code, and assign the resulting list to a variable with its name. Also, because how instaloader works, each element on the list should be converted to string before being assigned to USER.
Does that make sense?