Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
32.7K+ articles
Python
19.6K+ articles
Python Programs
3.7K+ articles
Python dictionary-programs
582+ articles
Python string-programs
572+ articles
python-list
426+ articles
Python tuple-programs
212+ articles
Python matrix-program
64+ articles
Python-sort
54+ articles
Python-list-of-lists
25+ articles
Python list-programs
1.7K+ posts
Recent Articles
Popular Articles
Extract Elements from a Python List
Last Updated: 03 December 2024
When working with lists in Python, we often need to extract specific elements. The easiest way to extract an element from a list is by using its index. Python uses zero-ba...
read more
Python
Python Programs
python-list
Python list-programs
python
Remove Items from a List While Iterating - Python
Last Updated: 03 December 2024
When we need to remove items from a list while iterating, we have several options. If we need to remove specific values, using a for loop with remove() can work, but it’s ...
read more
Python
Python Programs
python-list
Python list-programs
python
How to Sort a List Alphabetically in Python?
Last Updated: 14 April 2025
Sorting lists alphabetically is a common task in Python, whether we're organizing names, cleaning data or building an interface. Python makes sorting easy with several bui...
read more
Python
Python Programs
python-list
Python list-programs
Python-sort
Python-Sorted
How to Print a List Without Brackets in Python
Last Updated: 04 December 2024
In this article, we will see how we can print a list without brackets in Python. Whether we're formatting data for user interfaces, generating reports, or simply aiming fo...
read more
Python
Python Programs
Picked
python-list
Python list-programs
Python - Access List Item
Last Updated: 12 December 2024
Whether we are working with numbers, strings or other data types, lists provide a versatile way to organize and manipulate data. But how to access specific items in a list...
read more
Python
Python Programs
python-list
Python list-programs
Python - Remove List Item
Last Updated: 05 December 2024
Removing List Item can be achieved using several built-in methods that provide flexibility in how you remove list items. In this article, we'll explore the different ways ...
read more
Python
Python Programs
python-list
Python list-programs
Python - Add List Items
Last Updated: 19 April 2025
Python lists are dynamic, which means we can add items to them anytime. In this guide, we'll look at some common ways to add single or multiple items to a list using built...
read more
Python
Python Programs
python-list
Python list-programs
Python Unpack List
Last Updated: 02 May 2025
Unpacking lists in Python is a feature that allows us to extract values from a list into variables or other data structures. This technique is useful for various situation...
read more
Python
Python Programs
python-list
Python list-programs
How to compare two lists in Python?
Last Updated: 12 December 2024
In Python, there might be a situation where you might need to compare two lists which means checking if the lists are of the same length and if the elements of the lists a...
read more
Python
Python Programs
Picked
python-list
Python list-programs
Sort a List of Dictionaries by a Value of the Dictionary - Python
Last Updated: 05 February 2025
We are given a list of dictionaries where each dictionary contains multiple key-value pairs and our task is to sort this list based on the value of a specific key. For exa...
read more
Python
Python Programs
python-list
python-dict
Python list-programs
Python dictionary-programs
Python List Creation Programs
Last Updated: 06 February 2025
Python provides multiple ways to create lists based on different requirements, such as generating lists of numbers, creating nested lists, forming lists of tuples or dicti...
read more
Python
Python Programs
python-list
python-tuple
Python list-programs
Python tuple-programs
Python List Add/Append Programs
Last Updated: 06 February 2025
This article covers a wide range of methods for adding elements to a list, including:Basic addition techniques like append(), extend(), and insert().Appending multiple ite...
read more
Python
Python Programs
python-list
python-tuple
Python list-programs
Python tuple-programs
Python List and Tuple Combination Programs
Last Updated: 06 February 2025
Lists and tuples are two of the most commonly used data structures in Python. While lists are mutable and allow modifications, tuples are immutable and provide a stable st...
read more
Python
Python Programs
python-list
python-tuple
Python list-programs
Python List of List Programs
Last Updated: 06 February 2025
A list of lists is a common data structure in Python, used for handling multi-dimensional data, matrix operations and hierarchical data processing. Python provides several...
read more
Python
Python Programs
Python list-programs
Python-list-of-lists
Python Programs Combining Lists with Dictionary
Last Updated: 06 February 2025
Python provides powerful ways to work with lists and dictionaries, allowing developers to manipulate data efficiently. Combining these two structures enables a wide range ...
read more
Python
Python Programs
python-list
python-dict
Python list-programs
Python dictionary-programs
1
2
3
4
...
112
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !