Python Exercise: Unzip a list of tuples into individual lists
Python tuple: Exercise-17 with Solution
Write a Python program to unzip a list of tuples into individual lists.
Sample Solution:-
Python Code:
#create a tuple
l = [(1,2), (3,4), (8,9)]
printlist((zip(*l)))
Sample Output:
[(1, 3, 8), (2, 4, 9)]
Flowchart:

Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to convert a tuple to a dictionary.
Next: Write a Python program to reverse a tuple.
What is the difficulty level of this exercise?
Inviting useful, relevant, well-written and unique guest posts
- New Content published on w3resource :
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework