Merge two Lists in Python (Extend, Assignment Operator) - Python Tutorial for Beginners

Veröffentlicht am: 17 März 2021
auf dem Kanal: Digital Academy
667
10

🎓 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_...

***


Auf dieser Seite können Sie das Online-Video Merge two Lists in Python (Extend, Assignment Operator) - Python Tutorial for Beginners mit der Dauer stunde minuten sekunde in guter Qualität ansehen, das der Benutzer Digital Academy 17 März 2021 hochgeladen hat, den Link mit Freunden und Bekannten teilen, dieses Video wurde auf Youtube bereits 667 Mal angesehen und es wurde von 10 den Zuschauern gefallen. Viel Spaß beim Betrachtenden Zuschauern gefallen!