https://dev.twitter.com/docs/api/1.1/get/lists/members
#Holen Sie sich eine Liste der Benutzer und geben Sie die Anzahl der registrierten Benutzer aus
#t ist eine Twitter-Klasseninstanz
hoge = t.lists.list(user_id='user_id')
for h in hoge:
print(h['name'] + ':' + h['id_str'])
cursor = '-1'
count = 0
while cursor != '0':
#cursor=-1 the first "page."
tl = t.lists.members(list_id=h['id_str'],cursor=cursor)
count += len(tl['users'])
cursor = tl['next_cursor_str'] #Wenn keine nächste Seite vorhanden ist, wird 0 eingegeben
print(count)