所以我有一个包含单词和数字的嵌套列表,如下例所示:
nested_list = [['This', 1],['is' , 2],['a', 3],['list', 4]]
我还有一个数字列表:
number_list = [2,3]
我想根据天气生成两个嵌套列表,列表的第二个元素包含数字列表中的一个数字。
我想输出为:
list1 = [['is', 2],['a', 3]] #list one has values that matched the number_list
list2 = [['This', 1],['list', 4]] #list two has values that didn't match the number_list
我正在使用 for 循环遍历列表,但我希望有更好的方法。