1
我有一個l
中的單詞列表,如果它存在於l2中每個元組的第一個索引中,則刪除整個元組。在列表理解中的嵌套循環
我的代碼:
l = ['hi', 'thanks', 'thank', 'bye', 'ok', 'yes', 'okay']
l2 = [('hi how are u', 'doing great'), ('looking for me', 'please hold')]
l3 = [k for k in l2 if not any(i in k[0] for i in l) ]
莫名其妙的代碼不工作,我回來了L3空列表。
我想
l3 = [('looking for me', 'please hold')]
lo ** ok對我而言 –