python中循环迭代语句_python条件与循环-循环
1 while语句while用于实现循环语句,通过判断条件是否为真,来决定是否继续执行。1.1 一般语法语法如下:while expression:suite_to_repeat1.2 计数1 23 >>> cnt =045 >>> while(cnt < 9):67 ... print 'the index is', cnt89 ... cnt += 1...