🎓 Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you Learn Python from A to Z!
🖥️ Merge two Lists in Python (Extend, Assignment Operator)
You may sometimes want or need to merge two Lists in Python, so that you can have all of your data located in the same variable. Or, even update its values, with new content. In that case: use the built-in extend() method, to merge the values of one list into another one.
○ Merge two Lists in Python (Extend)
It takes a list as an argument, and appends all of the elements of this list into the first list. Notice that: this method do not overwrite existing values, but add them at the end of your list.
As you can see in this example, merging the two lists in Python will result in combining all of the items inside the same list.
my_list = ['red', 'green', 'blue']
my_list.extend([1,2,3])
my_list = ['red', 'green', 'blue', 1, 2, 3]
○ Combine two Lists in Python (Assignment Operator)
Alternatively, you can use the concatenation operator (+) or the augmented assignment operator (+=) to combine 2 lists. If you need help using operators, check out our Blog and the video about: Python Operators.
my_list = ['red', 'green', 'blue']
Concatenation operator
my_list = my_list + [1,2,3]
my_list = ['red', 'green', 'blue', 1, 2, 3]
Augmented assignment operator
my_list += [1,2,3]
my_list = ['red', 'green', 'blue', 1, 2, 3]
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, Strings, Li...
○ Operators in Python - • OPERATORS in Python (Arithmetic, Assignmen...
○ IF Statements in Python - • CONDITIONAL Statements in Python (IF, ELIF...
○ FOR Loops in Python - • FOR Loop in Python (Syntax, Break, Continu...
📖 Blog: http://digital.academy.free.fr/blog
📖 [FULL Course] HOW TO Learn Python? Python Tutorial for Beginners: • 🐍 Python 101: Learn Python Basics for Abso...
📖 [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_...
***
On this page of the site you can watch the video online Merge two Lists in Python (Extend, Assignment Operator) - Python Tutorial for Beginners with a duration of hours minute second in good quality, which was uploaded by the user Digital Academy 17 March 2021, share the link with friends and acquaintances, this video has already been watched 667 times on youtube and it was liked by 10 viewers. Enjoy your viewing!