孤独的猫

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

import time
y=3
start=time.time()
myfile=open('primes.txt','w')
while y<40000:
  x=2
  limit=y**0.5
  while x<=limit:
    if y%x==0:break
      x+=1
  else:
    print >>myfile,y,
  y+=2
myfile.close()
end=time.time()
print "End!\nUse Time:%f s" % (end-start)

posted on 2012-10-15 21:09  孤独的猫  阅读(154)  评论(0编辑  收藏  举报