SyntaxFix
Write A Post
Hire A Developer
Questions
Ref: zip built-in function
zip() in conjunction with the * operator can be used to unzip a list
zip()
*
unzip
unzip_lst = zip(*mylist) for i in unzip_lst: for j in i: print j