Cyber Month Deal - up to 36% OFF

How to Add Elements to a List in Python? | 4 Methods

Published on Jun 14, 2023 Updated on Feb 6, 2024

Python lists are used to store an ordered collection of items. They can hold values of the same data type or heterogeneous values, such as strings and integers within the same list. This detailed tutorial shows you four different ways to add elements to a list in Python.

What are Lists in Python?

In Python, a list is a collection of comma-separated values or items enclosed inside square brackets [ ]. It stores values of the same or different data types, as earlier mentioned. For example, you can have a list of strings only or a mix of both integers and strings.

Below is a Python list example that stores string values.

pets = ['Cat', 'Dog', 'Parrot', 'Hamster']

Elements inside a list can be accessed using integer indices where the first element takes the index of 0, and the second element takes the index of 1, and so on. This stems from the fact that lists are ordered, and elements retain the order in which they appear.

Python provides various ways of working and manipulating lists. You can perform various operations, such as adding, removing, or changing elements inside a list.

Let’s explore various ways of adding elements to a list in Python.

How to add elements to a list in Python?

Data structures are one of the core concepts of programming. They provide a means of organizing data for efficient storage and access.

Python provides four main data structures, which are broadly categorized into mutable (lists, sets, and dictionaries) and immutable (tuples) data types. Mutable data types can be modified or changed, while immutable ones are static and cannot be altered.

There are four ways of adding elements or values to an existing list in Python. Let’s check them out.

Prerequisites

To follow along in this guide, you need to have Python installed on your machine. In this tutorial, we are working with Python 3.11. In addition to installing Python, it is recommended to have an IDE such as Pycharm installed to make writing code easier and more efficient.

Deploy and scale your Python projects effortlessly on Cherry Servers' robust and cost-effective dedicated or virtual servers. Benefit from an open cloud ecosystem with seamless API & integrations and a Python library.

Method 1: Add items to a list using the append() method

The append() method is used to add values at the end of a list. It adds a new element at the end of a list, right after its last item. Consider a list called cars that contains a collection of car models as shown:

cars = ["Nissan", "Ford", "Mercedes", "Mazda"]

To add another car model to the list, say Toyota, call the append() method on the list with Toyota as the parameter.

cars.append(“Toyota”)

Now display the list of items using the print function:

print(cars)

Output

['Nissan', 'Ford', 'Mercedes', 'Mazda', 'Toyota']

From the output, you can see that Toyota has been placed at the end of the list.

Python append()

Method 2: Add items at a specific index in a list

The insert() method lets you add an item at a specific index in the list. As you know, list elements are ordered, starting with index 0 for the first item.

The insert() method takes two parameters: the index of the new element to be added and the value of the element.

Using the cars list, let us now insert Toyota at index 1. To do so, run the following code:

cars.insert(1, “Toyota”)

Display the list items as before.

print(cars)

Output

['Nissan', 'Toyota', 'Ford', 'Mercedes', 'Mazda']

This time around, the new item Toyota appears at index 1, just like we had specified in the insert() method.

Python insert()

Method 3: Extend a list from an iterable using the extend() method

The extend() method appends list elements from an iterable such as another list, tuple, or set to the end of the existing list. Suppose you have two lists that store a collection of fruits, as shown.

myFruits_list1 = ["Apples", "Oranges", "Mangoes"]

myFruits_list2 = ["Strawberries", "Bananas", "grapes"]

To add the elements of myFruits_list1 to myFruits_list2 call the extend() method as follows.

myFruits_list2.extend(myFruits_list1)

This adds all the items in the first list to the end of the second list.

print(myFruits_list1)

Output

['Strawberries', 'Bananas', 'grapes', 'Apples", 'Oranges', 'Mangoes']

Python extend()

As we mentioned earlier, you can extend a list using elements contained in a tuple. Take the following example.

Here, we have a list called furniture and a tuple called points.

furniture = ['Sofas', 'beds', 'tables', 'chairs']

points = (1, 4, 5, 9)

To add the values in the points tuple to the furniture list, call the extend() method as follows.

furniture.extend(points)

To verify this, run the print() function as shown.

print(furniture)

The furniture list, now contains additional elements, which are integer values from the points tuple.

Output

['Sofas', 'beds', 'tables', 'chairs', 1, 4, 5, 9]

Python extend()

Discover how Caxita, an online travel engine application company with high workloads, eliminated downtime and allowed engineers to focus on development thanks to Cherry Servers' robust bare metal cloud and 24/7 technical support.

Method 4: List concatenation

Lastly, you can add elements to a list by concatenating two lists using the plus [ + ] operator.

Consider the following two lists:

prime_numbers = [1, 3, 5, 7, 11]

even_numbers = [2, 4, 6, 8, 10]

You can concatenate the two lists using the plus sign operator and save the result in a new list. The newly created list will comprise all elements from both lists.

new_list = prime_numbers + even_numbers
``
Then view the new list.

```python
print(new_list)

Output

[1, 3, 5, 7, 11, 2, 4, 6, 8, 10]

Python concatenate()

Conclusion

In this tutorial, you have learned different ways of adding elements to a list in Python. As you’ve seen, different approaches will yield different outcomes. The insert() is more specific on where exactly you want to add the new element to the list. The append() and extend() methods will place values at the end of the list, as does list concatenation.

Cloud VPS - Cheaper Each Month

Start with $9.99 and pay $0.5 less until your price reaches $6 / month.

Share this article

Related Articles

Published on Aug 21, 2019 Updated on Jun 15, 2023

Can DDoS attacks harm your server and how to prevent them?

DDoS attacks can cause real harm to your system. Learn some practical examples of how to lower the risk and how to prevent ddos attacks.

Read More
Published on Nov 28, 2019 Updated on Aug 8, 2023

Streaming Servers: Everything You Need To Know

What are Live Streaming servers. How do they work? Why do you need a stable and fast network? We will try to cover these topics on our article.

Read More
Published on Jul 8, 2022 Updated on Oct 4, 2023

How to Install and Configure Apache Reverse Proxy Server With SSL/TLS Encryption

This step-by-step guide will explain what a reverse proxy is and show you how to install Apache reverse proxy server with SSL/TLS encryption.

Read More
We use cookies to ensure seamless user experience for our website. Required cookies - technical, functional and analytical - are set automatically. Please accept the use of targeted cookies to ensure the best marketing experience for your user journey. You may revoke your consent at any time through our Cookie Policy.
build: 06ac5732e.831