Home > Backend Development > Python Tutorial > What's the Most Efficient Way to Flatten a Shallow List in Python?

What's the Most Efficient Way to Flatten a Shallow List in Python?

Barbara Streisand
Release: 2024-12-16 14:04:14
Original
333 people have browsed it

What's the Most Efficient Way to Flatten a Shallow List in Python?

Flattening Shallow Lists in Python

Flattening a shallow list of iterables is a common operation in Python. While there are several approaches, each offers varying performance and readability.

1. List Comprehension

A nested list comprehension can appear to flatten a list, but it results in a NameError since the variable used in the outer comprehension (e.g., menuitem) is not defined.

2. reduce

The reduce function allows for flattening using list.__add__ as the reduction operation. However, this method requires an additional list(x) call to convert Django QuerySet objects into lists.

3. itertools.chain

The itertools.chain function provides a more efficient option for list flattening. It uses a generator to yield elements from the iterables, avoiding the need for copying or list comprehension.

Code Example:

import itertools

list_of_menuitems = [['image00', 'image01'], ['image10'], []]

# Flatten using list comprehension (not recommended)
# [image for image in menuitem for menuitem in list_of_menuitems]

# Flatten using reduce
# reduce(list.__add__, (list(mi) for mi in list_of_menuitems))

# Flatten using itertools.chain
flattened_list = list(itertools.chain(*list_of_menuitems))
Copy after login

Chain is the preferred method for flattening shallow lists due to its performance and ease of use. It can handle any iterable, including Django QuerySets.

The above is the detailed content of What's the Most Efficient Way to Flatten a Shallow List in Python?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template