Skip to content

extend method in python

Have you ever wondered: “How to add elements of one list to another?” The extend method of Python helps you to do exactly this.It is an in-build method that adds elements of specified list to the end of the current list. Since it is a method of class list, you use it by using dot(.) Operator on list. It doesn’t return any value but add the content to the existing… Read More »Extend Method in Python List

Extend Method in Python List