Make pairs
returns iterator
x = ['a', 'b', 'c']
y = [1, 2]
zipped = list(zip(x, y))
# [('a', 1), ('b', 2)]
x2, y2 = zip(*zip(x, y))
# x2 = ['a', 'b']
# y2 = [1, 2]
'언어 > python cheatsheet' 카테고리의 다른 글
이상한 swap (0) | 2019.10.23 |
---|---|
remove key from dictionary if exists, else return None (0) | 2019.10.23 |
dictionary comprehension (0) | 2019.10.22 |
string replace with dictionary mapping(maketrans, translate) (0) | 2019.10.22 |
원소 수세기 : Counter (0) | 2019.10.08 |