统计101到200有多少个素数

notZS = []

zs = []

for i in range(101,201):

    for j in range(2,i):

        if i%j == 0:

            notZS.append(i)

            break

    if i not in notZS:

        zs.append(i)

print(len(zs))

你可能感兴趣的:(统计101到200有多少个素数)