Thursday, September 4, 2025
HomeLanguagesPython – Itertools.chain.from_iterable()

Python – Itertools.chain.from_iterable()

Python’s Itertool is a module that provides various functions that work on iterators to produce complex iterators. This module works as a fast, memory-efficient tool that is used either by themselves or in combination to form iterator algebra.

Note: For more information, refer to Python Itertools

The functions under itertools can be classified into 3 categories

  1. Functions producing Infinite Iterators
  2. Functions producing Iterators terminating on the shortest input sequence
  3. Functions producing Combinatoric generators

Chain.from_iterable() method

The function chain.from_iterable() comes under the category of terminating iterators. This function takes a single iterable as an argument and all the elements of the input iterable should also be iterable and it returns a flattened iterable containing all the elements of the input iterable.

Syntax :
chain.from_iterable(iterable)

Example #1:




# Importing chain class from itertools
from itertools import chain
  
  
# Single iterable containing iterable
# elements(strings) is passed as input
from_iterable = chain.from_iterable(['Lazyroar',
                                     'for'
                                     'Lazyroar'])
  
# printing the flattened iterable
print(list(from_iterable))


Output :

[‘g’, ‘e’, ‘e’, ‘k’, ‘s’, ‘f’, ‘o’, ‘r’, ‘g’, ‘e’, ‘e’, ‘k’, ‘s’]

Example #2:




# Importing chain class from itertools
from itertools import chain
  
  
# Single iterable containing iterable
# elements(strings and list) is passed
# as input
from_iterable = chain.from_iterable(['Lazyroar'
                                     'for',
                                     'Lazyroar',
                                     ['w', 'i', 'n', 's']])
  
# printing the flattened iterable
print(list(from_iterable))


Output :

[‘g’, ‘e’, ‘e’, ‘k’, ‘s’, ‘f’, ‘o’, ‘r’, ‘g’, ‘e’, ‘e’, ‘k’, ‘s’, ‘w’, ‘i’, ‘n’, ‘s’]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6632 POSTS0 COMMENTS
Nicole Veronica
11800 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11860 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS