2008年6月23日 星期一

loop

while  ... else...
the else is executed if break is not excuted in the while
ex:
while  x> 1:
          if  x>10
              break
else
        print  x

for ...  else  is the same as while ...  else ...

for applies to list, string , tuple

沒有留言: