Obwohl *zip
der folgende Code pythonischer ist, bietet er eine viel bessere Leistung:
xs, ys = [], []
for x, y in zs:
xs.append(x)
ys.append(y)
Auch wenn die ursprüngliche Liste zs
leer ist, *zip
wird ausgelöst, aber dieser Code kann richtig verarbeiten.
Ich habe gerade ein kurzes Experiment durchgeführt und hier ist das Ergebnis:
Using *zip: 1.54701614s
Using append: 0.52687597s
Mehrfaches Ausführen append
ist 3x - 4x schneller als zip
! Das Testskript ist hier:
#!/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))
Meine Python-Version:
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.
(1, 3, 5)
und(2, 4, 6)
keine Listen. Sie sollten verwendenmap(list, zip(*[(1, 2), (3, 4), (5, 6)]))