if 條件:
語句1elif 條件2:
語句2else
語句3
範例:
# if-猜數字
number=66
guess=int(input('enter an intenger: '))
if guess==number:
print('you are right!')
elif guess1. break:跳出整個迴圈
2. continue:忽略迴圈剩下的部分,重新回到for的部分
3. pass:相當於什麼都沒有
#pass
list1=[0,1,2]
for i in list1:
if not i:
continue
print(i)
# i=0, if生效,執行continue,忽略迴圈體剩餘部分,進入下一次迴圈i=1
# i=1, if不滿足,繼續執行print;i=2時一樣的道理
# 【注意】:python中,布林型屬於int,其實就是1-0
for i in list1:
if not i:
pass
print(i)
# i=0,if生效,執行pass,pass相當於什麼都沒有,所以繼續執行print
最後我想吐槽一下,為什麼我的程式**烏漆抹黑的???為什麼???
2 1單鏈表的基本操作
date 2017 2 24 author sedate description 單鏈表的基本操作 include include include include using namespace std define int min 0x80000000 define ok 1 define err...
21C STL list 基本操作
include include using namespace std intmain include include using namespace std template typename t void display const t a intmain include include usi...
python檔案的基本操作之控制檔案指標
1.檔案基本操作 r t 可讀 可寫 w t 可寫 可讀 a t 可追加寫 可讀 r b w b a b 一樣的 2.檔案游標的移動 f.seek offset,whence offset代表檔案的指標的偏移量,單位是位元組bytes whence代表參考物,有三個取值 0 參照檔案的開溝 1 參照...