Guest User

Untitled

a guest
May 27th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import time
  2. import psyco
  3. psyco.full()
  4.  
  5. print "No,time"
  6. for i in xrange(8):
  7. t0 = time.clock()
  8. N = pow(10,i)
  9. a = []
  10. for j in xrange(N):
  11. a.append(j)
  12. print "%d,%.2f" % (i,time.clock()-t0)
Add Comment
Please, Sign In to add comment