Ask
your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW)
41 Online
Fastest of Fastest Algorithm to calculate 10000 primes in python ?is it
Still Need Help?
Join the QuestionCove community and study together with friends!
import time from math import sqrt st=time.time() mdu=0 check =3 noofprime=2 primeLs=[2,3] prime=True while noofprime!=10000: check=check+2 if check%3==0:check=check+2 sqrcheck=int (sqrt(check))+1 for div in range (3,sqrcheck): prime=True mdu=check%div if mdu==0 : prime=False break if prime==True: noofprime= noofprime+1 primeLs=primeLs+[check] et=time.time() print primeLs[noofprime-1] print st print et print (et-st)/60
i get this time when checked without writing to list prime 104729 st:1298174950.11 et:1298174952.94 0.0471333344777
Can't find your answer?
Make a FREE account and ask your own questions, OR help others and earn volunteer hours!
Join our real-time social learning platform and learn together with your friends!
Join our real-time social learning platform and learn together with your friends!
Latest Questions
ShikuniShigana:
Ight gang what do u think of these guys. Shikuni: A demonic universal being who saved a rabbit life by controlling his corpse from getting eaten from a few
addison123456:
I shouldnu2019t wait for your name to light up my screen, but it does soft as a promise.
addison123456:
I shouldnu2019t wait for your name to light up my screen, but it does soft as a promise.
Cobalt:
When it comes to chat (Misc and All Subs), what do you think would improve the en
EdwinJsHispanic:
newtons 3 laws was inertia, acceleration, and law of action and reaction, correct
LibbyLo:
Not really school-related, but who called my PFP Twilight Sparkle?
gelphielvr:
I have to choose a mental health disorder for a project? Which one should I choos
1 hour ago
13 Replies
0 Medals
22 minutes ago
2 Replies
1 Medal
9 hours ago
7 Replies
1 Medal
13 hours ago
13 Replies
1 Medal
8 hours ago
6 Replies
2 Medals
37 minutes ago
99 Replies
0 Medals
41 minutes ago
56 Replies
2 Medals