天气晴朗,天空万里无云,温暖的阳光洒在人的身上,就像是一位母亲轻轻地抚摸着我们,微风徐徐,波光粼粼,站在美丽的湖边尽情享受大自然的无穷魅力。
判断
缩进代替大括号。
冒号(:)后换号缩进。
if
test=100 if test>50: print('OK') print('test')
if-elif-else
test=50 if 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=0 while 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基础—判断和循环详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
到此这篇关于浅谈Python基础—判断和循环就介绍到这了。人远比自己想象的要,特别是当你回头看看的时候,你会发现自己走了一段自己都没想到的路。生活可以漂泊,可以,但灵魂必须有所归依。只要你地说出再见,生活一定会赐予你一个新的开始。更多相关浅谈Python基础—判断和循环内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!