gpt4 book ai didi

python - 循环中的循环 Python

转载 作者:行者123 更新时间:2023-11-30 23:00:51 24 4
gpt4 key购买 nike

我试图在一个循环中运行一个循环,但我完全困惑了。

for i, value in enumerate(len(sections):
if i not in [17, 24]:

if (' tax ' in sections[i]
or ' Tax ' in sections[i]):

pat=re.compile("|".join([r"\b{}\b".format(m) for m in months]), re.M)
month = pat.search("\n".join(sections[i].splitlines()[0:6]))
print(month)

问题是我想对 len(sections) 中除 17 和 24 之外的所有值运行循环。想法如下:对于每个部分(文章),如果单词tax或者其中有税,请打印月份。一切正常,但开头的几行除外,我试图在其中运行循环,但值 17 和 24 除外。

干杯,

最佳答案

这应该有效:

for i, value in enumerate(sections):
if i not in [17, 24]:
if ' tax ' in sections[i] or ' Tax ' in sections[i]:
pat = re.compile("|".join([r"\b{}\b".format(m) for m in months]), re.M)
month = pat.search("\n".join(sections[i].splitlines()[0:6]))
print(month)

关于python - 循环中的循环 Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35130397/

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