A pesar de que *zip
es más Pythonic, el siguiente código tiene un rendimiento mucho mejor:
xs, ys = [], []
for x, y in zs:
xs.append(x)
ys.append(y)
Además, cuando la lista original zs
está vacía, *zip
aumentará, pero este código puede manejarlo correctamente.
que acaba de ejecutar un experimento rápido, y aquí está el resultado:
Using *zip: 1.54701614s
Using append: 0.52687597s
Correr varias veces, es append
3x - 4x más rápido que zip
! La escritura de la prueba está aquí:
#!/usr/bin/env python3
import time
N = 2000000
xs = list(range(1, N))
ys = list(range(N+1, N*2))
zs = list(zip(xs, ys))
t1 = time.time()
xs_, ys_ = zip(*zs)
print(len(xs_), len(ys_))
t2 = time.time()
xs_, ys_ = [], []
for x, y in zs:
xs_.append(x)
ys_.append(y)
print(len(xs_), len(ys_))
t3 = time.time()
print('Using *zip:\t{:.8f}s'.format(t2 - t1))
print('Using append:\t{:.8f}s'.format(t3 - t2))
Mi versión de Python:
Python 3.6.3 (default, Oct 24 2017, 12:18:40)
[GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.42)] on darwin
Type "help", "copyright", "credits" or "license" for more information.