2013年8月2日 星期五
2013年8月1日 星期四
[Python ] Compare two list only return matched
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
list1 = [1, 2, 3] | |
list2 = [3, 4, 5, 6] | |
# method 1 | |
print list(set(list1) & set(list2)) | |
# method 2 | |
print [d for d in list1 if d in list2] |
訂閱:
文章 (Atom)