📜  Python| sympy.isprime() 方法

📅  最后修改于: 2022-05-13 01:55:32.609000             🧑  作者: Mango

Python| sympy.isprime() 方法

在 simpy 模块中,我们可以使用 sympy.isprime()函数测试给定数 n 是否为素数。对于 n < 2^64,答案是确定的;较大的 n 值实际上是伪素数的概率很小。

请注意,负数(例如 -13)不被视为质数。

Syntax:  sympy.isprime()
Parameter:  n; number to be tested
Return:  bool value result 

代码#1:

Python3
# Python program to check prime number
# using sympy.isprime() method
 
# importing sympy module
from sympy import *
 
# calling isprime function on different numbers
isprime(30)
isprime(13)
isprime(2)


Python3
# Python program to check prime number
# using sympy.isprime() method
 
# importing sympy module
import sympy.ntheory as nt
 
# calling isprime function on different numbers
nt.isprime(30)
nt.isprime(13)
nt.isprime(2)


输出:

False
True
True

代码#2:

Python3

# Python program to check prime number
# using sympy.isprime() method
 
# importing sympy module
import sympy.ntheory as nt
 
# calling isprime function on different numbers
nt.isprime(30)
nt.isprime(13)
nt.isprime(2)

输出:

False
True
True