时间:2021-05-22
判断
缩进代替大括号。
冒号(:)后换号缩进。
if
test=100if test>50: print('OK')print('test')if-elif-else
test=50if test>200: print('200')elif test<100: print('100')else: print('100-200')列表
test1=[123,456,789]if 123 in test1: print('OK')字典
test2={'hello':123,'world':456}if 'hello' in test2: print('OK')循环
while
数值
test=0while test<10: print(test) test+=1集合
test1=set(['hello','world'])while test1: test2=test1.pop() print(test2)for
集合
test3=set(['hello','world'])for t in test3:#相当于foreach print(t)列表
test4=[123,456,789]for i in range(3): print(test4[i])test5=[123,456,789,34,5435,26,2362,262,26,5]for i in range(len(test5)): print(test5[i])continue
test6=[11,12,13,14,15,16,17,18,19,20]for i in test6: if i%2==0: print(i) else: continue print(i)break
test7=[12,13,14,15,16,17,18,19,20]for i in test7: if i%2==0: print(i) else: break print(i)以上所述是小编给大家介绍的Python基础—判断和循环详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Python基础之循环语句用法。分享给大家供大家参考,具体如下:while循环Python中while语句的一般形式:while判断条件:stat
代码执行结构为顺序结构、选择结构、循环结构。python判断选择结构【if】if判断条件#进行判断条件满足之后执行下方语句执行语句elif判断条件#在不满足上面
本章节将为大家介绍Python循环语句的使用。Python中的循环语句有for和while。Python循环语句的控制结构图如下所示:while循环Python
无限循环如果条件判断语句永远为true,循环将会无限的执行下去。如下实例#!/usr/bin/python#-*-coding:UTF-8-*-var=1whi
无限循环如果条件判断语句永远为true,循环将会无限的执行下去,如下实例:#!/usr/bin/python#-*-coding:UTF-8-*-var=1wh