python 2 教程
animals = ['dog', 'cat', 'elephant'] for animal in animals: print animal, # 最后加一个逗号,打印结果不会换行,而是以空格分开
输出结果:
dog cat elephant
animals = ['dog', 'cat', 'elephant'] index=0 while(index<2): print animals[index], # 最后加一个逗号,打印结果不会换行,而是以空格分开 index+=1
输出结果:
dog cat
i=1 while(i<10): if(i==5): break else: print i, # 最后加一个逗号,打印结果不会换行,而是以空格分开 i+=1
输出结果:
for i in range(10): if(i%2==0): continue else: print i, # 最后加一个逗号,打印结果不会换行,而是以空格分开
输出结果:
1 3 5 7 9