六个不重复的数组成的质数密码有几个 import math def pdzs(nb): #判断质数 nbgen2=int(math.sqrt(nb+1)) if nb%2==0: return 2 for i in range(3,nbgen2+1,2)