这个是什么意思(๑•̌.•̑๑)ˀ̣ˀ̣

i,j,k=1,3,5
while i!=0:
if i%j ==0:
if i%k==0:
python(i)
break
i=i+1

你没有缩进,不同的缩进,代码的含义不同啊
另外,python(i),你确定不是print(i) ?