前面講述了函數、語句和字符串的基礎知識,該篇文章主要講述文件的基礎知識(與其他語言非常類似).
##一. 文件的基本操作
文件是指存儲在外部介質(如磁盤)上數據的集合.文件的操作流程為:
打開文件(讀方式\寫方式)->讀寫文件(read\readline\readlines\write\writelines)->關閉文件
1.打開文件
調用函數open打開文件,其函數格式為:
~~~
file_obj=open(filename[, mode[, buffering]]) 返回一個文件對象(file object)
???????? ??????????????????????— filename文件名(唯一強制參數)
????????????????????????????????????????????? ?·原始字符串 r'c:\temp\test.txt'
????????????????????????????????????????????? ?·轉移字符串 'c:\\temp\\test.txt'
??????????????????????????????— mode文件模式
??????????????????????????????????????????? ? ·r 讀模式
?????????????????????????????????????????? ? ?·w?寫模式
?????????????????????????????????????????? ? ?·a 追加模式(寫在上次后面)
?????????????????????????????????????????? ?? ·+?讀/寫模式(沒有文件即創建,可添加到其他模式中使用)
?????????????????????????????????????????? ? ?·b 二進制模式(可添加到其他模式中使用)
?????????????????????????????? — buffering緩沖(可選參數)
??????????????????????? ??????????????????? ? ·參數=0或False 輸入輸出I/O是無緩沖的,所有讀寫操作針對硬盤
????????????????????????? ?????????????????? ?·參數=1或True 輸入輸出I/O是有緩沖的,內存替代硬盤
????????????????????????????? ?????????????? ?·參數>1數字代表緩沖區的大小,單位字節.-1或負數代表使用默認緩沖區大小
~~~
注意:當處理二進制文件如聲音剪輯或圖像時使用'b'二進制模式,可以'rb'讀取一個二進制文件.
2.關閉文件
應該牢記使用close方法關閉文件,因為Python可能會緩存(出于效率考慮把數據臨時存儲某處)寫入數據,如果程序突然崩潰,數據根本不會被寫入文件,為安全起見,在使用完文件后關閉.如果想確保文件被關閉,應該使用try/finally語句,并且在finally子句中調用close方法.如:
~~~
?????? #Open your file
?????? try:
??????????? #Write data to your file
?????? finally:
?????????? file.close()
~~~
3.讀寫文件
調用函數write方法向文件中寫入數據,其函數格式為:
~~~
file_obj.write(string) 參數string會被追加到文件中已存部分后面
file_obj.writelines(sequence_of_strings) 僅傳遞一個參數,列表[ ] 元組() 字典{}
~~~
注意:實用字典時字符串的順序出現是隨機的.
~~~
#使用write()寫文件
file_obj=open('test.txt','w')
str1='hello\n'
str2='world\n'
str3='python'
file_obj.write(str1)
file_obj.write(str2)
file_obj.write(str3)
file_obj.close()
#使用writelines()寫文件
file_obj=open('test.txt','w')
str1='hello\n'
str2='world\n'
str3='python'
file_obj.writelines([str1,str2,str3])
file_obj.close()
#輸出 本地test.txt文件
hello
word
python
~~~
調用函數read方法讀取數據,其函數格式為:var=file_obj.read(),其中read全部讀取,返回string;readline讀取一行,返回string;readlines讀取文件所有行,返回a list of string.例:
~~~
#使用read
print 'Use the read'
file_obj=open('test.txt','r')
s=file_obj.read()
print s
file_obj.close
#使用readline
print 'Use the readline'
file_obj=open('test.txt','r')
line1=file_obj.readline()
line1=line1.rstrip('\n')
print 'l1 ',line1
line2=file_obj.readline()
line2=line2.rstrip('\n')
print 'l2 ',line2
line3=file_obj.readline()
line3=line3.rstrip('\n')
print 'l3 ',line3
file_obj.close
#使用readlines
print 'Use the readlines'
file_obj=open('test.txt','r')
li=file_obj.readlines()
print li
file_obj.close
~~~
輸出內容如下:
~~~
Use the read
hello
world
python
Use the readline
l1 hello
l2 world
l3 python
Use the readlines
['hello\n', 'world\n', 'python']
~~~
可以發現在使用readline()函數時它返回的結果是'hello\n'字符串,需要使用rstrip去除'\n',否則print輸出時總空一行.同時寫入文件時使用格式化寫入比較方便,如s="xxx%dyyy%s\n"%(28,'csdn').
~~~
#格式化寫入
fd=open('format.txt','w')
head="%-8s%-10s%-10s\n"%('Id','Name','Record')
fd.write(head)
item1="%-8d%-10s%-10.2f\n"%(10001,'Eastmount',78.9)
fd.write(item1)
item2="%-8d%-10s%-10.2f\n"%(10002,'CSDN',89.1234)
fd.write(item2)
fd.close()
#輸出
Id????? Name????? Record???
10001?? Eastmount 78.90????
10002?? CSDN????? 89.12??
~~~
##二. 文件與循環
前面介紹了文件的基本操作和使用方法,但是文件操作通常會與循環聯系起來,下面介紹while循環和for循環實現文件操作.代碼如下:
~~~
#使用while循環
fr=open('test.txt','r')
str=fr.readline()
str=str.rstrip('\n')
while str!="":
print str
str=fr.readline()
str=str.rstrip('\n')
else:
print 'End While'
fr.close
#使用for循環
rfile=open('test.txt','r')
for s in rfile:
s=s.rstrip('\n')
print s
print 'End for'
rfile.close()
~~~
其中for調用迭代器iterator,迭代器提供一種方法順序訪問一個聚合對象中的各個元素,它相當于通過Iter函數獲取對象的迭代器,再通過next函數(該方法調用時不需要任何參數)獲取下一個值.for可以遍歷iterator_obj包括List\String\Tuple\Dict\File.如:
~~~
?????? s='www.csdn.net'
?????? si=iter(s)????????? #生成迭代器
?????? print si.next()? #調用next依次獲取元素,最后迭代器沒有返回值時引發StopIteration異常**
~~~
##三. 總結
該篇文章主要講述了Python文件基礎知識,包括文件的打開、讀寫、關閉操作、使用循環讀寫文件及迭代器的知識.希望對大家有所幫助,如果有錯誤或不足之處,還請海涵!
(By:Eastmount 2014-10-8 中午11點?原創CSDN?[http://blog.csdn.net/eastmount/](http://blog.csdn.net/eastmount/)**)
參考資料:
1.51CTO學院 智普教育的python視頻 [**http://edu.51cto.com/course/course_id-581.html**](http://edu.51cto.com/course/course_id-581.html)
2.《Python基礎教程(第2版)》Magnus Lie Hetland[挪]著
- 前言
- [Python學習] 專題一.函數的基礎知識
- [Python學習] 專題二.條件語句和循環語句的基礎知識
- [Python學習] 專題三.字符串的基礎知識
- [Python學習] 簡單網絡爬蟲抓取博客文章及思想介紹
- [Python學習] 專題四.文件基礎知識
- [python學習] 簡單爬取維基百科程序語言消息盒
- [python學習] 簡單爬取圖片網站圖庫中圖片
- [python知識] 爬蟲知識之BeautifulSoup庫安裝及簡單介紹
- [python+nltk] 自然語言處理簡單介紹和NLTK壞境配置及入門知識(一)
- [python學習] 模仿瀏覽器下載CSDN源文并實現PDF格式備份
- [Python學習] 簡單爬取CSDN下載資源信息
- [Python] 專題五.列表基礎知識 二維list排序、獲取下標和處理txt文本實例
- [Python學習] 專題六.局部變量、全局變量global、導入模塊變量
- [python] 專題七.網絡編程之套接字Socket、TCP和UDP通信實例
- [python] 專題八.多線程編程之thread和threading