gpt4 book ai didi

python - 为什么我的函数只循环遍历列表中的三个元素

转载 作者:太空宇宙 更新时间:2023-11-04 06:51:03 24 4
gpt4 key购买 nike

我试图遍历列表中的所有元素(其中 8 个),但我的函数只提供了其中的 4 个。这是我作为个人项目制作的应用程序。

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

最佳答案

您正在弹出列表并使循环基于列表的计数。

尝试使用 for 循环:

for lnk in link:
print lnk

关于python - 为什么我的函数只循环遍历列表中的三个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6907075/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com