50: print( OK ) print( test ) if-elif-else test=50 if test>200: print( 200 ) e..."/>
您好,登錄后才能下訂單哦!
判斷
縮進(jìn)代替大括號(hào)。
冒號(hào)(:)后換號(hào)縮進(jìn)。
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')
循環(huán)
while
數(shù)值
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:#相當(dāng)于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基礎(chǔ)—判斷和循環(huán)詳解整合,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。