본문 바로가기

Language/Python

python list, dictionary comprehension

리스트 컴프리핸션


tmp = [x for x in range(10)]

#
# tmp = [0,1,2,3,4,5,6,7,8,9]
#

딕셔너리 컴프리핸션


tmp = {x:x+1 for x in range(3)}

#
# tmp = {0:1, 1:2, 2:3}
#
반응형

'Language > Python' 카테고리의 다른 글

python input  (0) 2020.04.14
python 최소공배수  (0) 2020.04.04
windows10에서 virtualenv 설치 및 작동방법  (0) 2020.03.18
python heapq  (0) 2020.02.20
python collections  (0) 2020.02.03