*zip
Daha fazla Pythonic olmasına rağmen , aşağıdaki kod çok daha iyi performansa sahiptir:
xs, ys = [], []
for x, y in zs:
xs.append(x)
ys.append(y)
Ayrıca, orijinal liste zs
boş olduğunda *zip
yükselir, ancak bu kod düzgün bir şekilde işleyebilir.
Az önce hızlı bir deney yaptım ve işte sonuç:
Using *zip: 1.54701614s
Using append: 0.52687597s
Birden çok kez çalıştırmak append
, 3x - 4x daha hızlıdır zip
! Test komut dosyası burada:
#!/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))
Python Sürümüm:
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)
ve(2, 4, 6)
değil listeleri. kullanmalısınmap(list, zip(*[(1, 2), (3, 4), (5, 6)]))