使用for语句输出1-100之间的所有偶数
for i in range(1,101): if i%2==0: print(i)
使用while语句输出1-100之间能够被3整除的数字
j=1 while j<100: if j%3 ==0: print(j) j+1