parallel processing of multiple iterables
you need
list() to make list if []python list(zipobject) returns empty (list) container
I have run into a strange issue in Python 3.4.3, and it doesn't seem to be mentioned anywhere.
Lets say:
a = [1,2,3,4] and b = [5,6,7,8]
To concatenate these vertically: ab = zip(a,b)
in python...
https://stackoverflow.com/questions/29829301/python-listzipobject-returns-empty-list-container
파이썬의 zip() 내장 함수로 데이터 엮기
Engineering Blog by Dale Seo
https://www.daleseo.com/python-zip/


Seonglae Cho