[ create a new paste ] login | about

Link: http://codepad.org/S2KTIsv0    [ raw code | output | fork ]

Python, pasted on Dec 12:
1
2
3
4
5
6
7
8
from itertools import izip
from time import time
n=6
l=izip(xrange(10**n), xrange(10**n))
start=time()
print 3 not in [x[0] for x in l]
end=time()
print end-start


Output:
1
2
False
2.7288980484


Create a new paste based on this one


Comments: