Programing

튜플 목록에서 n 번째 요소를 추출하는 방법은 무엇입니까?

crosscheck 2020. 8. 28. 06:52
반응형

튜플 목록에서 n 번째 요소를 추출하는 방법은 무엇입니까?


튜플 목록에서 n 번째 요소를 얻으려고합니다.

다음과 같은 것이 있습니다.

elements = [(1,1,1),(2,3,7),(3,5,10)]

각 튜플의 두 번째 요소 만 목록으로 추출하고 싶습니다.

seconds = [1, 3, 5]

나는 for루프로 할 수 있다는 것을 알고 있지만 수천 개의 튜플을 가지고 있기 때문에 다른 방법이 있는지 알고 싶었습니다.


n = 1 # N. . .
[x[n] for x in elements]

FOR로 할 수 있다는 것을 알고 있지만 다른 방법이 있는지 알고 싶었습니다.

다른 방법이 있습니다. mapitemgetter 로도 할 수 있습니다 .

>>> from operator import itemgetter
>>> map(itemgetter(1), elements)

이것은 여전히 ​​내부적으로 루프를 수행하며 목록 이해력보다 약간 느립니다.

setup = 'elements = [(1,1,1) for _ in range(100000)];from operator import itemgetter'
method1 = '[x[1] for x in elements]'
method2 = 'map(itemgetter(1), elements)'

import timeit
t = timeit.Timer(method1, setup)
print('Method 1: ' + str(t.timeit(100)))
t = timeit.Timer(method2, setup)
print('Method 2: ' + str(t.timeit(100)))

결과 :

방법 1 : 1.25699996948
방법 2 : 1.46600008011

목록을 반복해야하는 경우 a를 사용하는 for것이 좋습니다.


이것은 또한 작동합니다 :

zip(*elements)[1]

(나는 주로 이것을 게시하고 있으며, 내가 그랬음을 스스로 증명하기 위해 zip...)

실제 사례보기 :

>>> help(zip)

내장 된 모듈에 내장 된 함수 zip에 대한 도움말 :

지퍼(...)

zip (seq1 [, seq2 [...]])-> [(seq1 [0], seq2 [0] ...), (...)]

튜플 목록을 반환합니다. 여기서 각 튜플은 각 인수 시퀀스의 i 번째 요소를 포함합니다. 리턴 된 목록은 가장 짧은 인수 시퀀스의 길이로 잘립니다.

>>> elements = [(1,1,1),(2,3,7),(3,5,10)]
>>> zip(*elements)
[(1, 2, 3), (1, 3, 5), (1, 7, 10)]
>>> zip(*elements)[1]
(1, 3, 5)
>>>

오늘 배운 깔끔한 것 : *list인수에 사용하여 함수에 대한 매개 변수 목록을 만듭니다 ...

참고 : Python3에서는 zip반복자 list(zip(*elements))를 반환 하므로 대신 튜플 목록을 반환하는 데 사용하십시오.


2- 튜플 목록의 두 번째 요소를 가져 오는 것이 가장 빠른 방법을 검색하면서 이것을 발견했습니다. 내가 원하는 것이 아니라 세 번째 방법으로 표시된 것과 동일한 테스트를 실행하고 zip 방법을 테스트했습니다.

setup = 'elements = [(1,1) for _ in range(100000)];from operator import itemgetter'
method1 = '[x[1] for x in elements]'
method2 = 'map(itemgetter(1), elements)'
method3 = 'dict(elements).values()'
method4 = 'zip(*elements)[1]'

import timeit
t = timeit.Timer(method1, setup)
print('Method 1: ' + str(t.timeit(100)))
t = timeit.Timer(method2, setup)
print('Method 2: ' + str(t.timeit(100)))
t = timeit.Timer(method3, setup)
print('Method 3: ' + str(t.timeit(100)))
t = timeit.Timer(method4, setup)
print('Method 4: ' + str(t.timeit(100)))

Method 1: 0.618785858154
Method 2: 0.711684942245
Method 3: 0.298138141632
Method 4: 1.32586884499

따라서 dict로 변환하고 값을 가져 오는 2 개의 튜플 쌍이 있으면 두 배 이상 빠릅니다.


map (lambda x:(x[1]),elements)

2- 튜플 목록에서 두 번째 요소를 추출 하기위한 Python 3.6의 타이밍 .

또한 numpy읽기가 더 간단한 배열 메서드가 추가되었습니다 (하지만 목록 이해력보다 더 간단합니다).

from operator import itemgetter
elements = [(1,1) for _ in range(100000)]

%timeit second = [x[1] for x in elements]
%timeit second = list(map(itemgetter(1), elements))
%timeit second = dict(elements).values()
%timeit second = list(zip(*elements))[1]
%timeit second = np.array(elements)[:,1]

및 타이밍 :

list comprehension:  4.73 ms ± 206 µs per loop
list(map):           5.3 ms ± 167 µs per loop
dict:                2.25 ms ± 103 µs per loop
list(zip)            5.2 ms ± 252 µs per loop
numpy array:        28.7 ms ± 1.88 ms per loop

map()zip()더 이상 목록을 반환하지 않는, 따라서 명시 적 변환.


islice사용 chain.from_iterable:

>>> from itertools import chain, islice
>>> elements = [(1,1,1),(2,3,7),(3,5,10)]
>>> list(chain.from_iterable(islice(item, 1, 2) for item in elements))
[1, 3, 5]

이는 둘 이상의 요소가 필요할 때 유용 할 수 있습니다.

>>> elements = [(0, 1, 2, 3, 4, 5), 
                (10, 11, 12, 13, 14, 15), 
                (20, 21, 22, 23, 24, 25)]
>>> list(chain.from_iterable(islice(tuple_, 2, 5) for tuple_ in elements))
[2, 3, 4, 12, 13, 14, 22, 23, 24]

참고URL : https://stackoverflow.com/questions/3308102/how-to-extract-the-n-th-elements-from-a-list-of-tuples

반응형