Skip to content

Python module for searching common interests in suspects lists

Notifications You must be signed in to change notification settings

RexRowan/Search-Capture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Search-Capture

Python module for searching common interests in suspects lists

from common_words import find_common_words

list1 = ['John', 'Alex', 'Carol', 'Jason']
list2 = ['Alex', 'Jason', 'Joe', 'Linda']
list3 = ['Jason', 'Justin', 'Joe', 'Linda']

common_words = find_common_words(list1, list2, list3)
print(common_words)  # Output: ['Jason']

Releases

No releases published

Packages

No packages published

Languages