#验证一个数是不是素数 100以内
for
num
in
range
(
2
,
99
):
#生成从2到89的序列
i
, num):
if
%
=
0
:
break
else
print
(num)