首页 > 代码库 > 选择与循环
选择与循环
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
选择与循环
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。