gpt4 book ai didi

python - 数组中的 lambda 找不到变量值

转载 作者:太空宇宙 更新时间:2023-11-03 19:40:13 25 4
gpt4 key购买 nike

我不久前开始使用Python,我再次需要你的帮助,我有一个带有缓存数据的csv文件,我使用for来遍历数据过滤器并将过滤后的数据保存在数组中作为示例

filters = ['LMS', 'atx', 'arx-dsd']
search_result = []
cached_file = open("teste.csv", "r")

search_result.append(cached_file.readline())
for words in filters:
print(words)
if_find = [x for x in cached_file if words in x]
print(if_find)
if if_find:
search_result.extend(if_find)

输出:

LMS
[us-east-1a,windows,running,x86_64,IBM,LMS]
ATX
[]
arx-dsd
[]

找不到其余结果,只找到数组中的第一个结果,如果您进行单独搜索,它会找到所有结果

我相信我的 lambda 不正确,所以结果错误

最佳答案

@stovfl 已经为您的问题提供了答案:您无法从 file object 多次读取,

要解决此问题,您可以将文件行存储在变量中:

with open("teste.csv", "r") as f:
cached_file = f.readlines()

关于python - 数组中的 lambda 找不到变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60466172/

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