※ 튜플을 이용한 다양한 데이터 가공 방법들을 게시합니다.

* 2개의 튜플을 하나의 Dictionary로 만들기
import itertools
adict = dict(itertools.izip(keys,values)) 

Posted by GhostKei
,