gpt4 book ai didi

用于列表比较的 Python IN 运算符

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

我正在使用 Python 插件。
我有一个名为 station_list 的列表,我在其中附加了所有值。它包含所有整数值。
现在,我想用列表内容检查我的查询结果。我的代码是:

self.db._exec_sql(c, "select distinct (station) from station  ")
for row in c.fetchall():
for m in range(len_station_list):
print row[0],station_list[m]

if row[0] == station_list[m]:
print 'true'

我正在用列表值检查每个选定的行。当我打印并检查时,它给出了正确的答案。但是比较出错了。
它不满足条件 if row[0] == station_list[m]:
可能是什么问题?

最佳答案

试试这个。

x = self.db._exec_sql(c, "select distinct (station) from station  ").fetchall()

y = [p for p in x if p[0] in station_list]

关于用于列表比较的 Python IN 运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9461015/

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