Python實用函數列表[開檔、計算變數長度,型態轉換]
資料來源: https://github.com/stormzhang/free-programming-books/blob/master/assets/python/Python%E6%A0%B8%E5%BF%83%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89%E5%B8%A6%E7%9B%AE%E5%BD%95.pdf 的p55~p55
函數原型
|
說明
|
int(obj)
|
將一個物件轉換為整數
|
len(obj)
|
返回對象的長度
|
open(fn, mode)
|
以 mode(‘r’ = 讀, ‘w’= 寫)方式打開一個檔案名為 fn 的檔
|
range([[start,]stop[,step])
|
返回一個整數清單。起始值為 start, 結束值為 stop – 1; start預設值為 0, step預設值為1。
|
raw_input(str)
|
等待使用者輸入一個字串, 可以提供一個可選的參數 str 用作提示信
息。
|
str(obj)
|
將一個物件轉換為字串
|