我想根据 python 中的两个列表检查项目,这些列表再次放入一个大列表中。在我的代码中,combinedList 是大列表,row1 和 row2 是子列表。
我需要检查 row1 和 row2 中的项目。但是,由于我是 python 新手,所以我对 psudo 代码有了大致的了解。是否有任何好的代码可以检查他们的项目的两个列表而不重复同一对多次?
row1 = [a,b,c,d,....]
row2 = [s,c,e,d,a,..]
combinedList = [row1 ,row2]
for ls in combinedList:
**for i=0 ; i < length of ls; i++
for j= i+1 ; j <length of ls; j++
do something here item at index i an item at index j**