#region Notes
"""
Mutable
Un-ordered sequence
No Duplicate values
Heterogenous
Elements should be immutable.
"""
#endregion
a={"Ravi",12,12.5,True,12,12,12}
print((a))
"""
Set ADT
Union of two sets.
Intersection of two set.
Difference of two sets.
symmetric difference of two sets.
Adds all elements of array B to the set A.
Remove all elements of array B to the set A.
"""
#region 1
b=set({1,2,3})
c=({7,4,5,2})
c.add(6)
c.update(b)
print(c)
print(b.union(c))
print(b.intersection(c))
print(b.difference(c))
print(b.symmetric_difference(c))
#endregion
Смотрите видео Python Tutorial: Set in Python онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Learn to code 23 Август 2021, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 8 раз и оно понравилось людям.