sets with python code example

Example 1: python sets

# You can't create a set like this in Python
my_set = {} # ---- This is a Dictionary/Hashmap

# To create a empty set you have to use the built in method:
my_set = set() # Correct!


set_example = {1,3,2,5,3,6}
print(set_example)

# OUTPUT
# {1,3,2,5,6} ---- Sets do not contain duplicates and are unordered

Example 2: sets in python

basket = {'apple', 'orange', 'apple', 'pear', 'orange', 'banana'}
print(basket)                      # show that duplicates have been removed
# OUTPUT {'orange', 'banana', 'pear', 'apple'}
print('orange' in basket)                 # fast membership testing
# OUTPUT True
print('crabgrass' in basket)
# OUTPUT False

# Demonstrate set operations on unique letters from two words

print(a = set('abracadabra'))
print(b = set('alacazam'))
print(a)                                  # unique letters in a
# OUTPUT {'a', 'r', 'b', 'c', 'd'}
print(a - b)                             # letters in a but not in b
# OUTPUT {'r', 'd', 'b'}
print(a | b)                              # letters in a or b or both
# OUTPUT {'a', 'c', 'r', 'd', 'b', 'm', 'z', 'l'}
print(a & b)                              # letters in both a and b
# OUTPUT {'a', 'c'}
print(a ^ b)                              # letters in a or b but not both
# OUTPUT {'r', 'd', 'b', 'm', 'z', 'l'}