编程语言
首页 > 编程语言> > 素性检验(Eratosthenes筛选法)及其python实现

素性检验(Eratosthenes筛选法)及其python实现

作者:互联网

就当为CSDN这方面的python开源做点贡献哈哈哈

素性检验(Eratosthenes筛选法)

#素数检验
def PrimalityTest(n:int):
    m=n
    p=2
    while p<m**0.5:
        if m%p==0:
            m/=p
        else:p+=1
    if m==n:
        return True
    elif m>1:
        return False

标签:当为,素性,python,检验,筛选,Eratosthenes
来源: https://blog.csdn.net/weixin_45181522/article/details/111869998