gpt4 book ai didi

python - 在无限循环中运行的最后一个输出 - Python

转载 作者:行者123 更新时间:2023-12-04 07:23:10 25 4
gpt4 key购买 nike

我的 python 代码从第 1 行选择链接,从第 2 行选择日期,以便运行需要链接和日期的 to_scrape 函数,最后输出无限运行。阅读并让链接+日期(行的两列)工作/获取数据而不会卡住循环的最佳方法是什么

start = 0 
end = 2
csvfile = open('file.csv', 'r')
csvFileArray = []
for row in csv.reader(csvfile):
csvFileArray.append(row[0])

csvFileDate = []
for row in csv.reader(csvfile):
csvFileDate.append(row[1])

csvfile.close()

alums = csvFileArray[start:end]
alumdate = csvFileDate[start:end]


for i in alums:
for j in alumdate:

start+=1
print(i)
print(start)
to_scrape(i,j)

最佳答案

而不是以下(你做了什么):

for i in alums:
for j in alumdate:

start+=1
print(i)
print(start)
to_scrape(i,j)
您应该使用 zip 函数,它可以并行迭代多个序列:
for i, j in zip(alums, alumdate):
start+=1
print(i)
print(start)
to_scrape(i,j)

关于python - 在无限循环中运行的最后一个输出 - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68373783/

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