Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.38 KB

wordclouds.md

File metadata and controls

28 lines (20 loc) · 1.38 KB

Comparing word/data sets:

set1 = {1, 2}
set2 = {1, 3}
set3 = {1, 4}

intersection = set.intersection(set1, set2, set3)
# Find intersection of the three sets


print(intersection)
# OUTPUT:
# {1}