What is the difference between append() and extend() method in Python?

devquora
devquora

Posted On: Feb 22, 2018

 

In the append() method the argument is added as a single element to the end. So, the length of the list increases by one.

Syntax

List.apend(object) 

Example

A = [1, 2]; 
B = [3, 4] 
A.append(B) 

Output: [1, 2, [3, 4]]

In the extend() method, each element in the object is iterated and added to the list.

Syntax

List.extend(object) 

Example

A = [1, 2]; 
B = [3, 4] 
A.extend(B) 

Output: [1, 2, 3, 4]

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Python Interview Questions

     How is Python different from Java?

    Java and Python differ in typing, syntax, and speed, but both are valuable for developers. Java uses static typing and braces for blocks, while Python uses dynamic typing and indentation. Python is ge..

    Python Interview Questions

    How does exception handling in Python differ from Java?

    Python’s try-except block allows for effective exception handling, enabling programmers to catch and handle errors without ending the program. This technique ensures that errors can be managed grace..

    Python Interview Questions

    What is a module and package in Python?

    Python modules are ".py" files with classes, functions, and variables. Packages are directories containing modules and sub-packages, marked by an init.py file. This file can be empty but indicates the..