for语句 python不支持类似c的for(i=0;i<5;i++)这样的循环语句,但可以借助range函数模拟: for x in range(0,5,1): print x 执行结果为: 0 1 2 3 4