判断代码:
defisprime(a): ifisinstance(a,int)==False: returnFalse ifa<=1: returnFalse ifa==2: returnTrue flag=1 x=int(pow(a,0.5))+1 forninrange(2,x): ifa%n==0: flag=0 break ifflag==1: returnTrue else: returnFalse
以上就是判断数字是否为质数的代码了,是不是挺简单的呢,快尝试看看吧~
判断代码:
defisprime(a): ifisinstance(a,int)==False: returnFalse ifa<=1: returnFalse ifa==2: returnTrue flag=1 x=int(pow(a,0.5))+1 forninrange(2,x): ifa%n==0: flag=0 break ifflag==1: returnTrue else: returnFalse
以上就是判断数字是否为质数的代码了,是不是挺简单的呢,快尝试看看吧~