Get free ebooK with 50 must do coding Question for Product Based Companies solved
Fill the details & get ebook over email
Thank You!
We have sent the Ebook on 50 Must Do Coding Questions for Product Based Companies Solved over your email. All the best!

Python List Programs

Last Updated on July 1, 2023 by Prepbytes

Python list programs are an essential part of Python programming, focusing on the versatile data structure known as lists. Lists provide a flexible and powerful way to store, manipulate, and process collections of data. With Python lists, you can easily create, access, modify, and remove elements, making them invaluable in various programming tasks. In this article, we will explore different Python list programs, covering topics such as creating lists, accessing elements, modifying list items, adding and removing elements, and more. By understanding the functionality and versatility of Python lists, you will be equipped with the knowledge to handle diverse data scenarios and solve problems efficiently. Let’s dive into the world of Python list programs and unlock their potential in your programming journey.

List in Python

A list is a grouping of related or unrelated items of data. For example,

Let’s say we have to note the age of five students. We may just build a list instead of 5 different variables:

Create a Python List

Python allows you to create lists by enclosing elements in [] and separating them with commas. For example,

Creating a List Program in Python

Sample Description
numbers = [1, 2, 3, 4]

print(numbers)

Output

[1, 2, 3, 4]

Here, we have created a list named numbers with 4 integer items.

There can be any number of items in a list, and they can be of any type (integer, float, string, etc.). For example,

# empty list
my_list = []

# list with mixed data types
my_list = [1, "Hello", 3.4]

Access Python List Elements

Each item in a list has a corresponding number in Python. The number is referred to as a list index.

The index number (0, 1, 2…) can be used to retrieve elements of an array. For example,

Python Program to Access List Elements

languages = ["Python", "Swift", "C++"]

# access item at index 0
print(languages[0])   # Python

# access item at index 2
print(languages[2])   # C++

In the example above, we made a list named languages.

We can see that each item on the list is linked to an index number in this instance. Additionally, we accessed the items using the index number.
Recall that the list index always begins at 0. Consequently, index 0 instead of index 1 contains the first element in a list.

Negative Indexing in Python

Python allows negative indexing for its sequences. The last item is represented by the index of -1, the second last by -2, and so on.

Negative Indexing Program in Python

languages = ["Python", "Swift", "C++"]

# access item at index 0
print(languages[-1])   # C++

# access item at index 2
print(languages[-3])   # Python

Output

C++
Python

Note: Python raises the IndexError exception if the supplied index does not exist in the list.

Slicing of a Python List

The slicing operator in Python allows you to access a subset of the list’s items rather than just a single one. For example,

Program of Slicing of a Python List

# List slicing in Python

my_list = ['p','r','e','p','b','y','t','e','s']

# items from index 2 to index 4
print(my_list[2:5])

# items from index 5 to end
print(my_list[5:])

# items beginning to end
print(my_list[:])

Output

['e', 'p', 'b']
['y', 't', 'e', 's']
['p', 'r', 'e', 'p', 'b', 'y', 't', 'e', 's']

Here,
my_list[2:5] returns a list with items from index 2 to index 4.
my_list[5:] returns a list with items from index 1 to the end.
my_list[:] returns all list items.

Note: The start index is inclusive but the end index is exclusive when we slice lists.

Add Elements to a Python List

There are several ways to add items to a list using Python List.

Using append()

The list’s last will be the position to add items using the append() method.

list program in python 6

numbers = [20, 30, 50, 10]

print("Before Append:", numbers)

# using append method
numbers.append(32)

print("After Append:", numbers)

Output

Before Append: [20, 30, 50, 10]
After Append: [20, 30, 50, 10, 32]

In the example above, we made a list named numbers. Notice the line,
numbers.append(32)
In this case, append() extends the array by 32.

Using extend()

To add every item from one list to another, we use the extend() method. For example,

prime_numbers = [2, 3, 5]
print("List1:", prime_numbers)

even_numbers = [4, 6, 8]
print("List2:", even_numbers)

prime_numbers.extend(even_numbers)

print("List after append:", prime_numbers)

Output

List1: [2, 3, 5]
List2: [4, 6, 8]
List after append: [2, 3, 5, 4, 6, 8]

prime_numbers and even_numbers are two lists in the example above. Notice the statement,

prime_numbers.extend(even_numbers)
Here, we are adding all of the even_numbers components to the prime_numbers.

Change List Items in Python

Python lists are mutable. Meaning lists are changeable. Additionally, we can alter list elements by assigning new values with the = operator.

Python Program to Change List Items in Python

languages = ['Python', 'Swift', 'C++']

# changing the third item to 'C'
languages[2] = 'C'

print(languages)  # ['Python', 'Swift', 'C']

Output

['Python', 'Swift', 'C']

The value at index 3 in this case is initially "C++." The value was then changed to "C" using

languages[2] = ‘C’

Remove an Item From a List

There are several ways to remove items to a list using Python List.

Using del()

The del statement in Python can be used to remove one or more items from a list. For example,

languages = ['Python', 'Swift', 'C++', 'C', 'Java', 'Rust', 'R']

# deleting the second item
del languages[1]
print(languages) # ['Python', 'C++', 'C', 'Java', 'Rust', 'R']

# deleting the last item
del languages[-1]
print(languages) # ['Python', 'C++', 'C', 'Java', 'Rust']

# delete first two items
del languages[0 : 2]  # ['C', 'Java', 'Rust']
print(languages)

Output

['Python', 'C++', 'C', 'Java', 'Rust', 'R']
['Python', 'C++', 'C', 'Java', 'Rust']
['C', 'Java', 'Rust']

Using remove()

The remove() method can be used to remove a list item as well. For example,

languages = ['Python', 'Swift', 'C++', 'C', 'Java', 'Rust', 'R']

# remove 'Python' from the list
languages.remove('Python')

print(languages) # ['Swift', 'C++', 'C', 'Java', 'Rust', 'R']

Output

['Swift', 'C++', 'C', 'Java', 'Rust', 'R']

Conclusion
In conclusion, list program in python offer a versatile and powerful way to handle collections of data in Python. By leveraging the functionality of lists, developers can efficiently organize, manipulate, and process data for a wide range of programming tasks. Whether you’re working with numbers, strings, or objects, list program in python provide a flexible solution. Throughout this article, we explored various aspects of Python list programs, covering topics such as list creation, element access, modification, and adding or removing elements. By mastering these concepts, you can harness the full potential of lists in your Python programming. By incorporating list programs in Python, you can enhance your problem-solving abilities and develop efficient algorithms. The indexing, slicing, and modification capabilities of lists empower you to work with data in a precise and dynamic manner. So, continue exploring and utilizing Python list programs to unlock their power in your coding journey. With list programs in Python, you have a versatile tool to efficiently handle and manipulate data, opening up endless possibilities for your programming endeavors.

Frequently Asked Questions (FAQs)

Q1. How do I create an empty list in Python?
To create an empty list in Python, you can simply use square brackets without any elements inside, like this: my_list = []. This initializes an empty list that you can later populate with elements.

Q2. Can I add different types of data to a single Python list?
Yes, Python lists are flexible and can contain elements of different data types. You can add numbers, strings, objects, or a combination of different types to a single list. For example, my_list = [1, "hello", 3.14, True] is a valid list with elements of different types.

Q3. How can I access specific elements in a Python list?
You can access elements in a Python list by using their index. The index starts from 0 for the first element, and you can access elements using square brackets. For example, my_list[2] will retrieve the third element in the list since indexing starts from 0.

Q4. Is it possible to modify elements in a Python list?
Yes, Python lists are mutable, which means you can modify their elements. You can assign a new value to a specific index in the list using the assignment operator. For example, my_list[1] = "new value" will change the second element of the list to "new value".

Q5. How can I remove an element from a Python list?
There are multiple ways to remove elements from a Python list. You can use methods like remove() to remove a specific value, del statement to delete an element by its index, or pop() to remove and return the last element. For example, my_list.remove(42) will remove the value 42 from the list.

Other Python Programs
Python program to reverse a number
Python program for heap sort
Python program to check armstrong number
Python program to check leap year
Python program to convert celsius to fahrenheit
Python program to find factorial of a number
Python program to reverse a linked list
Python Program to find the middle of a linked list using only one traversal
Python Program to Add Two Numbers
Python Program to Check Palindrome Number
Python Program to Print the Fibonacci Series
Python Loop Program
Anagram Program in Python
Fizzbuzz Program in Python
String Programs in Python

Leave a Reply

Your email address will not be published. Required fields are marked *