命名規則:
tips:下劃線作為變數名的開始對直譯器由特殊的意義,而且是內建識別符號所使用的符號
關鍵字:
python的關鍵字都儲存在keyword模組中
false def if
raise none del
import return true elif in
tryand
else
iswhile
a***cept
lambda with assert finally nonlocal yield
break
fornot
class
from
orcontinue
global pass
python是動態型別語言,不需要預先宣告變數的型別。變數的型別和值在賦值那一刻被初始化。
>>> number = 3
>>> number
3>>> type
(number)
《Python程式設計》筆記(二)
file whereami.py import os,sys print os.getcwd print sys.path 6 執行結果 my os.getcwd home my sys.path home lab home lab caffe python home usr lib python3...
程式設計筆記二
題目 輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。時間限制 c c 1秒,其他語言2秒 空間限制 c c 32m,其他語言64m class solution 題目 用兩個棧來...
《python核心程式設計》學習筆記(二) re
1.match 函式從字串的開始部分開始匹配,匹配成功,則返回匹配物件 匹配不成功,則返回none。m re.match foo on the table food m none2.search 函式用它的字串引數,在任意位置對給定的正規表示式模式 搜尋第一次出現的匹配情況。如果搜尋到成功的匹配,就...