🎓 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.add('yellow')
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.update(['yellow', 'orange'])
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:
○ Data Types in Python - • DATA TYPES in Python (Numbers, String...
○ Operators in Python - • OPERATORS in Python (Arithmetic, Assi...
○ IF Statements in Python - • CONDITIONAL Statements in Python (IF,...
○ FOR Loops in Python - • FOR Loop in Python (Syntax, Break, Co...
📖 Blog: http://digital.academy.free.fr/blog
📖 [FULL Course] HOW TO Learn Python? Python Tutorial for Beginners: • 🐍 Python 101: Learn Python Basics for...
📖 [PLAYLIST] Complete Python Development Course for Beginners: http://digital.academy.free.fr/playli...
🧑🎓 [COURSE] http://digital.academy.free.fr/courses
📘 [BOOK] Python for Absolute Beginners: https://amzn.to/3NvyOWV
🛒 Shopping and Discounts: http://digital.academy.free.fr/store
💌 Weekly Newsletter for Developers: https://www.getrevue.co/profile/digit...
#Python #Tutorial #Beginners #Shorts
***
♡ Thanks for watching and supporting ♡
Please Subscribe. Hit the notification bell.
Like, Comment and Share.
***
♡ FOLLOW US ♡
✧ http://digital.academy.free.fr/
✧ / digitalacademyy
✧ / digitalacademyfr
✧ / digital_academy_fr
✧ / digitalacademyonline
♡ SUPPORT US ♡
✧ http://digital.academy.free.fr/join
✧ http://digital.academy.free.fr/store
✧ http://digital.academy.free.fr/donate
✧ http://digital.academy.free.fr/subscribe
✧ / digital_academy
✧ https://www.buymeacoffee.com/digital_...
***
Watch video Add and Update Values from a Set in Python (Functions) - Python Tutorial for Beginners online without registration, duration hours minute second in high quality. This video was added by user Digital Academy 09 April 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 93 once and liked it 1 people.