Examples :
Input: ([’a’,’ apple’], [’b’,’ ball’]) Output: [’a’,’ apple’, ’b’,’ ball’] Input: ([1, ’sam’, 75], [2,’ bob ’, 39], [3,’ Kate’, 87]) Output: [1, ’sam’, 75, 2,’ bob’, 39, 3, ’Kate’, 87]
Approach # 1: Using reduce()
reduce ()
— classic list operation, used to apply a specific function passed in its argument to all elements of the list In this case, we used the add
function of the operator module which simply adds the given list arguments to an empty list.
# Python3 unpacking program # tuple of lists from functools import reduce import operator def unpackTuple (tup): return ( reduce (operator.add, tup)) # Driver code tup = ([ ’a’ , ’apple’ ], [ ’ b’ , ’ball’ ]) print (unpackTuple (tup)) |
Exit :
[’a’,’ apple’, ’b’,’ ball’]
Approach # 2 Using Numpy [Alternative Approach # 1]
# Python3 unpacker # tuple of lists from functools import reduce import numpy def unpackTuple (tup): print ( reduce (numpy.append, tup)) # Driver code tup = ( [ ’a’ , ’ apple’ ], [ ’ b’ , ’ball’ ]) unpackTuple (tup) |
Exit :
[’a’’ apple’ ’b’’ ball’]
Approach # 3 Usage itertools.chain(*iterables)
itertools.chain (* iterables)
creates an iterator that returns items from the first iteration until it is exhausted , then moves on to the next iteration until all iterations are exhausted. This makes our job much easier because we can simply add each iteration to an empty list and return it.
# Python3 unpacker # tuple of lists from itertools import chain def unpackTuple (tup): res = [] for i in chain ( * tup): res.append (i) print (res) # Driver code tup = ([ ’ a’ , ’apple’ ], [ ’b’ , ’ ball’ ]) unpackTuple (tup) |
Exit :
[’a’,’ apple’, ’b’,’ ball’]
Shop
Learn programming in R: courses
$FREE
Best Python online courses for 2022
$FREE
Best laptop for Fortnite
$399+
Best laptop for Excel
$
Best laptop for Solidworks
$399+
Best laptop for Roblox
$399+
Best computer for crypto mining
$499+
Best laptop for Sims 4
$
Latest questions
PythonStackOverflow
Common xlabel/ylabel for matplotlib subplots
1947 answers
PythonStackOverflow
Check if one list is a subset of another in Python
1173 answers
PythonStackOverflow
How to specify multiple return types using type-hints
1002 answers
PythonStackOverflow
Printing words vertically in Python
909 answers
PythonStackOverflow
Python Extract words from a given string
798 answers
PythonStackOverflow
Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?
606 answers
PythonStackOverflow
Python os.path.join () method
384 answers
PythonStackOverflow
Flake8: Ignore specific warning for entire file
360 answers
Wiki
Python | How to copy data from one Excel sheet to another
Common xlabel/ylabel for matplotlib subplots
Check if one list is a subset of another in Python
How to specify multiple return types using type-hints
Printing words vertically in Python
Python Extract words from a given string
Cyclic redundancy check in Python
Finding mean, median, mode in Python without libraries
Python add suffix / add prefix to strings in a list
Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?
Python - Move item to the end of the list
Python - Print list vertically