filmov
tv
Add and Update Values from a Set in Python (Functions) - Python Tutorial for Beginners
![preview_player](https://i.ytimg.com/vi/9Yo0ALwevBM/maxresdefault.jpg)
Показать описание
🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z!
🖥️ How to Add and Update Values from a Set in Python (Functions Add, Update)
Adding or updating set items in Python is very easy. Sets are mutable, which means their elements can be changed. In fact, you can add one single item into a Set using the method add(). This method adds an item to the Set, but not at the very end of the set - since sets are not indexed.
○ Add Items to a Set in Python
my_set = {'red', 'green', 'blue'}
# my_set = {'blue', 'green', 'yellow', 'red'}
You can also add multiple items at once, using the method update().
my_set = {'red', 'green', 'blue'}
# my_set = {'blue', 'orange', 'green', 'yellow', 'red'}
○ Update a Set in Python
Nonetheless, since a set is not indexed, you cannot update any value - once it has been added inside. Consequently, your only way to update an item in a Set would be to remove this value, then add another one. If you want to know how to remove an item from a set in Python, please follow along this video - and its next sections.
Let's play this video, stick around and watch until the end of this video! 👍🏻
- Digital Academy™ 🎓
***
☞ WATCH NEXT:
#Python #Tutorial #Beginners #Shorts
***
♡ Thanks for watching and supporting ♡
Please Subscribe. Hit the notification bell.
Like, Comment and Share.
***
♡ FOLLOW US ♡
♡ SUPPORT US ♡
***
🖥️ How to Add and Update Values from a Set in Python (Functions Add, Update)
Adding or updating set items in Python is very easy. Sets are mutable, which means their elements can be changed. In fact, you can add one single item into a Set using the method add(). This method adds an item to the Set, but not at the very end of the set - since sets are not indexed.
○ Add Items to a Set in Python
my_set = {'red', 'green', 'blue'}
# my_set = {'blue', 'green', 'yellow', 'red'}
You can also add multiple items at once, using the method update().
my_set = {'red', 'green', 'blue'}
# my_set = {'blue', 'orange', 'green', 'yellow', 'red'}
○ Update a Set in Python
Nonetheless, since a set is not indexed, you cannot update any value - once it has been added inside. Consequently, your only way to update an item in a Set would be to remove this value, then add another one. If you want to know how to remove an item from a set in Python, please follow along this video - and its next sections.
Let's play this video, stick around and watch until the end of this video! 👍🏻
- Digital Academy™ 🎓
***
☞ WATCH NEXT:
#Python #Tutorial #Beginners #Shorts
***
♡ Thanks for watching and supporting ♡
Please Subscribe. Hit the notification bell.
Like, Comment and Share.
***
♡ FOLLOW US ♡
♡ SUPPORT US ♡
***
Комментарии