Last Updated : 12 Jul, 2025
Python's Itertoolis 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 ItertoolsThe functions under itertools can be classified into 3 categories
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: Python3 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(['geeks',
'for',
'geeks'])
# printing the flattened iterable
print(list(from_iterable))
Output :
['g', 'e', 'e', 'k', 's', 'f', 'o', 'r', 'g', 'e', 'e', 'k', 's']Example #2: Python3 1==
# 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(['geeks',
'for',
'geeks',
['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']
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4