Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

list和tuple的遍历速度问题 #5

Open
jsonvin opened this issue Apr 25, 2017 · 2 comments
Open

list和tuple的遍历速度问题 #5

jsonvin opened this issue Apr 25, 2017 · 2 comments

Comments

@jsonvin
Copy link

jsonvin commented Apr 25, 2017

In [4]:
%timeit for row in lst: list(row)
100 loops, best of 3: 4.12 ms per loop
In [5]:
%timeit for row in tup: tuple(row)
100 loops, best of 3: 2.07 ms per loop

这个地方有个疑问,我理解的话,这里差距的产生和list(row)与tuple(row)的速度有关吧?实际遍历的速度应该是差不多吧

@zceng
Copy link

zceng commented Apr 25, 2017

In [1]:
from numpy.random import rand
values = rand(10000,4)
lst = [list(row) for row in values]
tup = tuple(tuple(row) for row in values)
a=1

In [2]: %timeit for row in lst: b=a+1
1000 loops, best of 3: 381 µs per loop

In [3]: %timeit for row in tup: b=a+1
1000 loops, best of 3: 368 µs per loop

实际测试可以发现,你的理解应该是对的

@liming0517
Copy link

yes,your're right

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants