Master Python with Sets: Essential for Beginners | Tutorial 18 | Python in Urdu | Python in Hindi

Опубликовано: 01 Сентябрь 2023
на канале: Ali Code
25
2

#learnpython #pythontutorial #pythoninurdu #pythoninhindi #alicode
Master Python with Sets: Essential for Beginners | Python in Urdu | Python in Hindi | Ali Code

In Python, a set is a collection of unique and unordered elements. It is one of the four built-in data types in Python, along with lists, tuples, and dictionaries.

Sets are defined using curly braces {} or the set() constructor. The elements in a set are separated by commas. Sets are mutable, meaning that you can add or remove elements from them 12.

Here’s an example of how to create a set:
Creating a set
my_set = {1, 2, 3}
print(my_set)

Output: {1, 2, 3}
You can also create a set using the set() constructor:
Creating a set using the set() constructor
my_set = set([1, 2, 3])
print(my_set)

Adding an element to a set
my_set = {1, 2, 3}
my_set.add(4)
print(my_set)

Output: {1, 2, 3, 4}


Output: {1, 2, 3}

Removing an element from a set
my_set = {1, 2, 3}
my_set.remove(3)
print(my_set)

Output: {1, 2}

You can perform various operations on sets such as union (|), intersection (&), difference (-), and symmetric difference (^) .


На этой странице сайта вы можете посмотреть видео онлайн Master Python with Sets: Essential for Beginners | Tutorial 18 | Python in Urdu | Python in Hindi длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Ali Code 01 Сентябрь 2023, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 25 раз и оно понравилось 2 зрителям. Приятного просмотра!