python如何比較兩個列表

python中兩個列表的比較 首先判斷列表是否等長; 如果等長,判斷對應索引位置的值是否相同; 如果不同,記錄兩者的誤差值和索引值 代碼如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 def compare(list1, list2): error = [] error_index = [] if len(list1) == len(list2): for i in ra
相關文章
相關標籤/搜索