-
[Python] tuple(index, key) in listImplementation/Python 2021. 10. 27. 15:04
A = [3,4,2,2] # index 와 value 를 tuple 형태로 저장 A_with_index = [ (idx,i) for idx, i in enumerate(A) ] # list comprehension 응용 => index 와 value 값 자리 바꾸기 A_with_index= [ (i, idx) for idx, i in enumerate(A) ]
'Implementation > Python' 카테고리의 다른 글
[Python] Config Parser 사용법 (0) 2022.03.10 [Python] max 함수에서 key 값 사용하기 (0) 2021.10.27 [Python] random int list (comprehension list) (0) 2021.09.30 [Python] tensorflow.expand_dims (0) 2021.09.28 [Python] unique key counting dictionary (0) 2021.09.26