2014-02-11 166 views
1

我有點新手python,但想知道如何創建一個循環,以便下面的代碼可以運行在多個twitter id而不是'433016508592037888'?創建循環?

我到目前爲止有:

import tweepy 


consumer_key="" 
consumer_secret="" 
access_key = "" 
access_secret = "" 


auth = tweepy.OAuthHandler(consumer_key, consumer_secret) 
auth.set_access_token(access_key, access_secret) 
api = tweepy.API(auth) 

def get_retweet_count(tweet_id): 
    tweet = api.get_status(tweet_id) 
    return tweet.retweet_count 

print get_retweet_count('433016508592037888') 

任何幫助將是巨大的。

回答

2

如果你有ID的列表中:

例如:id_list = [id, id, id, id, id]# imagine those are id numbers :)

,那麼你可以這樣做:

for id in id_list: 
    print get_retweet_count(id) 

的信息對一般循環和蟒蛇循環,點擊herehere(codeacademy, python tutorials)和google;)

+0

謝謝你的工作很棒。 –