Skip to content Skip to main navigation Skip to footer

Python中素数检测的方法

Python中素数检测是如何来实现的呢?下面的内容将会通过具体的实例来演示Python中素数检测的实现方法及相关技巧:

本文实例讲述了Python素数检测的方法。分享给大家供大家参考。具体如下:

该程序实现了素数检测器功能,如果结果是true,则是素数,如果结果是false,则不是素数。

def fnPrime(n):
  for i in range(2,n,1):
    if(n % i == 0):
      return bool(0)
  return bool(1)
 


Python中素数检测就是这样,欢迎大家参考。。。。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.