python 找出a-b之间的质数
当前位置:以往代写 > Python教程 >python 找出a-b之间的质数
2019-06-14

python 找出a-b之间的质数

python 找出a-b之间的质数
python">def  prime(b):
    t=b/2
    for i in range(2,t+1):
        if b%i==0:

            break
    else:
        return b

if __name__=="__main__":
    a=input('please input the first number:')
    b=input('please input the next number:')
    list=[]
    for i in range(a,b+1):
       if prime(i):
           list.append(prime(i))

    print 'the prime list is %s'%list

标签:python

    关键字:

在线提交作业