set subset python code example
Example 1: python subset
# Creating sets
A = {1, 2, 3}
B = {1, 2, 3, 4, 5}
# Checking if A is subset of B (vice versa)
# Returns True
# A is subset of B
print(A.issubset(B))
# Returns False
# B is not subset of A
print(B.issubset(A))
Example 2: python set
set_example = {1, 2, 3, 4, 5, 5, 5}
print(set_example)
# OUTPUT
# {1, 2, 3, 4, 5} ----- Does not print repetitions