for i in range(3,10,3) 具体的解释
for i in range (3,10,3): #只打印3到9这几个数中能被3整除的数 print("loop",i)
range(3,10,3) 即:i从3到10,每次增加3,所以i的取值范围:3,6,9