0
Extend and append
What is the difference between using 'append' and 'extend' function in Python?
4 Réponses
+ 5
Check my answer in the thread you posted a few hours ago (:
+ 5
Append can only add a single element, extend can a multiple elements
+ 1
Bingo. I got it. It adds another list to an existing list. Thanks
0
Ya, but I don't get it. It performs the same function as append