Write a Python program to unzip a list of tuples into individual lists.
a
= [(1,2), (3,4), (8,9)]
print(list(zip(*a)))
This is blog is useful for the students of BCA and BCS .
Write a Python program to unzip a list of tuples into individual lists.
a
= [(1,2), (3,4), (8,9)]
print(list(zip(*a)))