I am currently using python-twitter module and I want to be able to isolate a string from the return I get with api.GetFollowersPaged(). When I run the code to print the return I get something that looks like this:
[User(ID=...., ScreenName=....)]
how could I isolate just the value of either ID or ScreenName and assign it to another variable. I have tried to use
print ScreenName
but recieve a NameError telling me ScreenName is not defined.