位運算知識點:異或操作
1、條件迴圈操作:if,elif,else
常考知識點:assert,前提條件,如果這個條件不滿足就丟擲異常。
2、迴圈條件:
while 和 while else
for a in
for else
常用於迴圈中的有以下幾個:
range([start,] stop[, step=1])
enumerate(sequence, [start=0]
break和continue 用於跳出迴圈或者繼續迴圈。
pass
是空語句,不做任何操作,只起到佔位的作用,其作用是為了保持程式結構的完整性。儘管pass
語句不做任何操作,但如果暫時不確定要在乙個位置放上什麼樣的**,可以先放置乙個pass
語句,讓**可以正常執行。
3、列表推導式和元組推導式 ,**推導式
[ expr for value in collection [if condition] ]
( expr for value in collection [if condition] )
python菜鳥學習第二課之條件和迴圈
一.條件控制 python條件語句是通過一條或多條語句 稱之為條件 的執行結果 true或false 來決定執行的 塊 if語句的一般形式 if條件 1 塊1 elif 條件2 塊2 else 塊3 if語句的關鍵字是 if elif else if語句可以巢狀在另乙個if語句中 二.迴圈語句 1....
Python快速學習第二課
coding utf 8 created on 2018年9月8日 author administrator 本章知識點 基本資料型別 複數型別 bool型別儲存 基本的資料結構 基本的函式使用 from scipy.special.ufuncs import it2j0y0 n1 3 print ...
學習Python之旅 第二課
字串 printh函式 def print self,args,sep end n file none known special case of print print value,sep end n file sys.stdout,flush false prints the values to...