gpt4 book ai didi

Python - 如果列表中的任何元素在行中

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

所以我这里有一些代码:

for line in FlyessInput:
if any(e in line for e in Fly):
FlyMatchedOutput.write(line)
elif line not in Fly:
FlyNotMatchedOutput.write(line)
else:
sys.exit("Error")

由于某种原因,它们没有输出列表“Fly”中匹配的行,而是只输出出现在 FlyessInput 文件中的行,而不是全部。它似乎没有一致的输出。

我想要的是将与“Fly”中的元素匹配的每一行输出到 FlyMatchedOutput 中。我已经检查了输入文件和“Fly”列表,并且存在匹配的元素,但它们似乎没有发送到 MatchedOutput 文件。

谢谢,尼克。

最佳答案

What I want is for each line which matches an element in 'Fly' to be outputted into FlyMatchedOutput.

我不认为你的 elif 做了你认为应该做的事情,但不知道你的测试输入我不能说这是否会导致问题。

这里对您的代码进行了细微的更改,似乎可以实现您想要的功能(虽然是 priting 而不是调用您的其他函数。

def testFlyCode(FlyessInput, Fly):
for line in FlyessInput:
if any(e in line for e in Fly):
print('FlyMatchedOutput', line)
else:
print('FlyNotMatchedOutput', line)

FlyessInput = [[1, 2, 3], [2, 3, 4]]
Fly = [1, 2]
testFlyCode(FlyessInput, Fly)

Fly = [1, 12]
testFlyCode(FlyessInput, Fly)

输出:

('FlyMatchedOutput', [1, 2, 3])
('FlyMatchedOutput', [2, 3, 4])
('FlyMatchedOutput', [1, 2, 3])
('FlyNotMatchedOutput', [2, 3, 4])

关于Python - 如果列表中的任何元素在行中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35361114/

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