##リストの参照
#ユーザーのリストを取得し、登録されているユーザー数を出力
#tはtwitterクラスインスタンス
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'] #次ページなければ0が入力されている
print(count)