python的for语句怎么写_python:for循环
for循环可以遍历任何序列的项目,如一个列表或者一个字符串。例1:自定义字符串fruits ='苹果5个,香梨4个'for i in fruits:print(i)运行结果 :例2:自定义一个列表List =['苹果','梨子']for i in List:print(i)运行结果:例3 :输出1-9的数字for i in range(1,10):print(i)运行结果:思维拓展:案例1:fru...