0 votes
by
What is the difference between append() and extend() methods?

1 Answer

0 votes
by

Both append() and extend() methods are methods used to add elements at the end of a list.

append(element): Adds the given element at the end of the list that called this append() method

extend(another-list): Adds the elements of another list at the end of the list that called this extend() method

...