我正在使用 python 2.7 我试图找出一种自动更改列表名称的方法。
让我解释一下我有多个列表
list1 = [1, 2, 3, 4, 5]
list2 = [4, 5, 9, 3]
list3 = [8, 4, 3, 2, 1]
我想在循环中调用列表以确定哪些列表包含或不包含特定数字。
我的第一个想法是
x = "list" + str(i) # (where i iterates in the loop)
print x
但是,使用上面的代码只给了我字符串“list1”(当 i=1 时)。
我想要的是能够调用名为 list1 的列表并使用 .count() 运算符来确定该数字是否存在,如果我不想调用下一个列表,直到我不在列表中(最终将有多达 30 个列表)。
谢谢,
瑞安