python if not set is subset code example
Example: 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))