[파이썬] 반복 후 Python 항목 제거
당신이 원하는 : i.remove(j) match_list는 목록 목록입니다. ------------------- list_of_lists = [['g', 'h', 'i'], ['a', 'b', 'c'] ... ]] first_list = ['i', 'am', 'an', 'old', 'man'] myList = [] for current_list in list_of_lists: for item in current_list: for word in first_list: if item in word: myList.append(item) list_of_lists.remove(item) 나는 당신이 무엇을 하려는지 알 수 있도록 당신의 코드를 더 현명하게 읽을 수 있도록 편집했습니다. 내 생각에, 당신은 그 "하..
카테고리 없음
2021. 3. 1. 17:33