#-*- coding: utf-8 -*-
#python 27
#xiaodeng
#python之函式用法file()
#file()
#說明:file()內建函式它的功能等於open(),但是可以看出,他是個檔案工廠(生成檔案物件),dict()生成字典物件
#包含與被包含的關係
'''file(...)
file(name[, mode[, buffering]])#buffering是緩衝相關的可選引數
return the binary representation of an integer or long integer.
'''html=file('
test.txt
','r')
print html.read()
File文件用法總結 Python
python open 方法用於開啟乙個檔案,並返回檔案物件,在對檔案進行處理過程都需要使用到這個函式,如果該檔案無法被開啟,會丟擲 oserror。使用 open 方法一定要保證關閉檔案物件,即呼叫 close 方法。open 函式常用形式是接收兩個引數 檔名 file 和模式 mode 完整的語...
python之函式用法 setattr
coding utf 8 python 27 xiaodeng python之函式用法 setattr 用 setattr 函式重構方法 class fruit def init self,color,price self.color color self.price price def setat...
python之函式用法getattr
coding utf 8 python 27 xiaodeng python之函式用法getattr getattr 說明 getattr getattr object,name default value default 預設值 get a named attribute from an obje...