With Python, I have a userlist with a bunch of userids [1234,321,1203,2348,45955] and so forth. I'm trying to pass the userids into the api.LookupUser function.
This function usually takes one user_id at a time. For example, api.LookupUser(user_id=123)
Is there an easy way to pass each value from the userlist into the function?