Daftar Python Unzip

zipped = [("a", 1), ("b", 2)]
unzipped_object = zip(*zipped)
unzipped_list = list(unzipped_object)

print(unzipped_list)
# Output:
# [('a', 'b'), (1, 2)]
Old Pizza