私のリストのすべての要素(そのうちの8つ)をループしようとしていますが、私の関数は4つだけを提供しています。これは私が個人的なプロジェクトとして作っているアプリケーション用です。どのように私の関数は、私のリスト内の3つの要素をループしています
import urllib
def get_followers():
count = 0
link = ['http://twitter.com/statuses/user_timeline.xml?screen_name=beratmahmuzlu', 'http://twitter.com/statuses/user_timeline.xml?screen_name=lidiazuin', 'http://twitter.com/statuses/user_timeline.xml?screen_name=kelewele_boham', 'http://twitter.com/statuses/user_timeline.xml?screen_name=AwangHafizam', 'http://twitter.com/statuses/user_timeline.xml?screen_name=BRAYANLVN', 'http://twitter.com/statuses/user_timeline.xml?screen_name=zezol_pl', 'http://twitter.com/statuses/user_timeline.xml?screen_name=brysonwong', 'http://twitter.com/statuses/user_timeline.xml?screen_name=racsozara']
while count < len(link):
print link[count]
link.pop()
count = count + 1
コードをインデントしてください。Pythonであるため、コードをインデントしてください。 – BrainStorm
待ち伏せ、これと何が関係しているの? –
単純なforループがあなたが望むものでない場合は、もっと説明しなければなりません。あなたは 'link.pop()'で何を達成しようとしていますか –