码迷,mamicode.com
首页 > 其他好文 > 详细

选择与循环

时间:2017-06-06 18:43:33      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:dex   index   statement   string   list   选择   str   bre   lis   

1、选择语句(if)

###e.g.1

if  xx :

    statement1

else :

    statement2

 

###e.g.2

if  xx :

    statement1

elif yy:

    statement2

......

else :

    statement3

 

###e.g.3

if  xx :

    statement1

if  yy :

    statement2

if  zz :

    statement3

 

 

2、循环(while)

##e.g.1

while  xx: statement

 

##e.g.2

while  xx:

   statement

   if  yy:

      continue(或者break)

 

##e.g.3

while xx:

    statement1

else:

    statement2

 

3、循环(for)

#e.g.1

for  xx in list/string/tuple...

    statement1

 

#e.g.2

for  index in list/string/tuple...length:

       list/string/tuple[index]

 

4、空语句 pass

 

#e.g.2

for  xx in yy:

       statement1

else:

       statement2

 

选择与循环

标签:dex   index   statement   string   list   选择   str   bre   lis   

原文地址:http://www.cnblogs.com/gardonkoo/p/6952565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!