Mastering Python: How to Add One Array to Another

Updated on April 26, 2026
Table of Contents
    The Solution

    In Python, you can add one array to another using the `extend()` method for efficiency, or the `+` operator to create a new list.

    The Concept / The Fix

    In Python, adding one array (or list) to another can be achieved using several methods, each with its own use case and performance implications. The most efficient way to append elements from one array to another is by using the extend() method, which modifies the original list in place. Alternatively, you can use the + operator to concatenate lists, creating a new list without altering the originals.

    Deep Technical Dive & Misconceptions

    Python lists are dynamic arrays that can hold elements of different data types. When you want to combine two lists, you have multiple options:

    • extend(): This method is efficient for adding multiple elements because it modifies the original list in place without creating a new list.
    • + operator: This creates a new list by concatenating the two lists, which can be less efficient due to the creation of a new list object.
    • append(): This method adds a single element to the end of the list. If you try to append a list, it will be added as a single element, resulting in a nested list structure.
    • Loop with append(): You can iterate over one list and append each element to another list, but this is less efficient than using extend().

    A common misconception is using append() to add multiple elements, which results in a nested list rather than a flat structure. It's crucial to choose the right method based on whether you want to modify the original list or create a new one.

    Code Examples

    # Using extend() method
    list1 = [1, 2, 3]
    list2 = [4, 5, 6]
    list1.extend(list2)
    print(list1)  # Output: [1, 2, 3, 4, 5, 6]
    # Using + operator
    list1 = [1, 2, 3]
    list2 = [4, 5, 6]
    combined_list = list1 + list2
    print(combined_list)  # Output: [1, 2, 3, 4, 5, 6]
    # Using append() in a loop
    list1 = [1, 2, 3]
    list2 = [4, 5, 6]
    for item in list2:
        list1.append(item)
    print(list1)  # Output: [1, 2, 3, 4, 5, 6]
    # Using append() for a nested list
    list1 = [1, 2, 3]
    list2 = [4, 5, 6]
    list1.append(list2)
    print(list1)  # Output: [1, 2, 3, [4, 5, 6]]
    # Using array module for type-specific arrays
    import array
    arr1 = array.array('i', [1, 2, 3])
    arr2 = array.array('i', [4, 5, 6])
    arr1.extend(arr2)
    print(arr1)  # Output: array('i', [1, 2, 3, 4, 5, 6])

    Comparison Table

    Method Description Modifies Original? Performance Best For
    extend() Adds multiple elements to the end of the list. Yes Fastest Most efficient option
    + operator Concatenates two lists into a new list. No Slower (copies data) When you need a new list
    append() loop Adds elements one by one using a loop. Yes Slower (multiple calls) Learning purposes

    Frequently Asked Questions

    1. How to add to an array in Python?

    To add elements to an array in Python, use the append() method for single elements or the extend() method for multiple elements.

    2. How do you sum an array in Python?

    To sum an array in Python, use the sum() function. For example, total = sum(arr) will give you the sum of all elements in the array.

    3. How do you add each element in an array in Python?

    You can add each element in an array using a loop or the sum() function. For example, iterate over the array and accumulate the sum in a variable.

    4. What is the difference between a Python list and an array?

    Lists are built-in data structures that can hold elements of different data types, while arrays (from the array module) are type-specific and more memory-efficient for numerical data.

    5. How do I add two arrays in Python?

    To add two arrays in Python, use the + operator for lists or the extend() method for arrays from the array module.

    Was this solution helpful?
    Report Broken Code or Error

    Help us improve. Paste the error you got or explain what went wrong.

    Thanks! We will review and fix this.

    Related Questions

    Comments & Discussions

    Log in or Sign up to join the discussion.