python求1000以内的素数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python求1000以内的素数相关的知识,希望对你有一定的参考价值。

import time
def isPrime(n):
  for i in range(2,int(n**0.5)+1):
     if n % i==0:
       return False
  else:
    return True

strPrimes=""
t=time.clock()
for j in range(2,1000):
  if isPrime(j):
    strPrimes=strPrimes+str(j)+","

print(strPrimes)
print("Time used:{}".format(time.clock()-t))

运行结果如下:

技术分享













以上是关于python求1000以内的素数的主要内容,如果未能解决你的问题,请参考以下文章

python求100以内素数之和

python求100以内的素数

python 求100以内所有素数

Python练习求10万以内的素数

Python3练习题 026:求100以内的素数

python脚本11_求10万以内所有素数