老齊python-基礎7(文件操做、迭代)

    在python3中,沒有file這個內建類型了(python2中,file是默認類型)python

一、讀文件git

    建立文件,130.txt 並在裏面輸入github

learn python
http://qiwsir.github.io
qiwsir@gmail.com
>>> f = open("130.txt")
>>> dir(f)  #查看方法
['_CHUNK_SIZE', '__class__', '__del__', '__delattr__', '__dict__', '__dir__', '__doc__', '__enter__', '__eq__', '__exit__', '__format__', '__ge__', '__getattribute__', '__getstate__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__lt__', '__ne__', '__new__', '__next__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_checkClosed', '_checkReadable', '_checkSeekable', '_checkWritable', '_finalizing', 'buffer', 'close', 'closed', 'detach', 'encoding', 'errors', 'fileno', 'flush', 'isatty', 'line_buffering', 'mode', 'name', 'newlines', 'read', 'readable', 'readline', 'readlines', 'seek', 'seekable', 'tell', 'truncate', 'writable', 'write', 'writelines']

 

f = open("./codes/130.txt")  #當在上級目錄時指定文件
for line in f:
    print(line)

二、建立文件app

>>> nf = open("txtfile.txt","w")  #建立txtfile.txt文件
>>> nf.write("This is a new file")  #文件中添加一句話,並返回字符串長度
18
>>> nf.close()   #關閉打開的文件

    只讀方式測試ssh

>>> f = open("txtfile.txt")
>>> f
<_io.TextIOWrapper name='txtfile.txt' mode='r' encoding='UTF-8'>
>>> f = open("txtfile.txt","r")
>>> f
<_io.TextIOWrapper name='txtfile.txt' mode='r' encoding='UTF-8'>

    1)w 模式,以寫方式打開文件,可向文件寫入信息。若是文件存在則清空文件,再寫新內容。函數

    2)a 模式,以追加模式打開文件(一打開文件,文件指針自動移到文件末尾),若是文件不存在則建立oop

       也能夠用這種模式打開一個不存在的文件,即新建測試

>>> fn = open("mdfile.md","a")
>>> fn
<_io.TextIOWrapper name='mdfile.md' mode='a' encoding='UTF-8'>
>>> fn.write("python can helo you to be agreat programmer.")
44
>>> fn.close()

三、使用withui

     在對文件進行寫入操做以後,都要執行file.close(),它的做用就是將文件關閉,同事也將內容保存在文件中。spa

     除了顯示的操做關閉以外,還有另一種方法with,更加pythonic

>>> with open("mdfile.md","a") as f:
...     f.write("\nI am a Pythoner.")
...
17

四、文件的狀態

    有時候要獲取一個文件的狀態(也成爲屬性),好比建立日期、修改日期、大小等。

>>> import os
>>> file_stat = os.stat("mdfile.md")  #使用os模塊讀取文件屬性
>>> file_stat
os.stat_result(st_mode=33188, st_ino=8672850, st_dev=16777220, st_nlink=1, st_uid=501, st_gid=20, st_size=61, st_atime=1505309783, st_mtime=1505309775, st_ctime=1505309775)
>>> file_stat.st_ctime
1505309775.0
>>> import time    #使用time模塊讀取時間
>>> time.localtime(file_stat.st_ctime)
time.struct_time(tm_year=2017, tm_mon=9, tm_mday=13, tm_hour=21, tm_min=36, tm_sec=15, tm_wday=2, tm_yday=256, tm_isdst=0)

五、read/readline/readlines

>>> f = open("mdfile.md")  
>>> f.read(12)  #讀取前12個字符
'python can h'
>>> f.read()    #若是不指定就輸出到EOF爲止(End of file)
'elo you to be agreat programmer.\nI am a Pythoner.'   #指針的緣由沒有讀取前部分

    readline,逐行讀取文件內容

>>> f.readline()   #每執行一次讀取一行
'python can helo you to be agreat programmer.\n'
>>> f.readline()
'I am a Pythoner.'
>>> f.readline()
''

    readlines,將文件各行讀出來,放到一個列表中返回

>>> f = open("mdfile.md")
>>> f.readlines()
['python can helo you to be agreat programmer.\n', 'I am a Pythoner.']
>>> f = open("mdfile.md")
>>> for line in f.readlines(): print(line)
...
python can helo you to be agreat programmer.

I am a Pythoner.
>>> f = open("mdfile.md")
>>> for line in f: print(line)   #看似相同其實不一樣,readlines已經在內存中生成列表
...
python can helo you to be agreat programmer.

I am a Pythoner.

 六、讀很大的文件

>>> import fileinput
>>> for line in fileinput.input("you.md"): print(line,end='')
...
You Raise Me Up
When I am down 當我失意低落之時
and, oh my soul, so weary; 個人精神,是那麼疲倦不堪
When troubles come 當煩惱困難襲來之際
and my heart burdened be; 個人心裏,是那麼負擔沉重
Then, I am still 然而,我默默的佇立
and wait here in the silence, 靜靜的等待
Until you come 直到你的來臨
and sit awhile with me. 片刻地和我在一塊兒

七、seek

    讀取文件,指針也隨着運動,當讀取結束時,這陣就移動了相應的位置。

>>> f = open("you.md")
>>> f.readline()
'You Raise Me Up\n'
>>> f.readline()
'When I am down 當我失意低落之時\n'
>>> f.tell()            #查看指針位置
56
>>> f.seek(0)        #重置指針位置
0
>>> f.readline()
'You Raise Me Up\n'
>>> f.tell()
16
>>> f.readline()
'When I am down 當我失意低落之時\n'
>>> f.seek(4)       #將指針移動到對應位置
4
>>> f.tell()
4
>>> f.readline()
'Raise Me Up\n'

     指針特性:

         seek(offset[,whence])是這個函數的完整形式,以上咱們省略了whence,在默認狀況下都是以文件的開頭爲參照物進行移動的,即whence=0 whence,還能夠有別的值,具體:

        1)默認值是0,表示從文件開頭開始計算指針偏移的量(簡稱偏移量)

        2)當whence=1,表示從當前位置開始計算偏移量。

        3)當whence=2,表示相對文件末尾移動

 

2、初識迭代

    循環(Loop),指的是在知足條件的狀況下,重複執行同一段代碼,如while語句。

    迭代(Iterate),指的是按照某種順序諸葛訪問對象(如列表)中的每一項,如for語句。

    遞歸(Recursion),指的是一個函數不斷調用自身的行爲,如著名的斐波那契數列。

    遍歷(Traversal),指的是按照必定的規則訪問樹形結構中的每一個節點,並且每一個節點都只訪問一次。for循環就是一種遍歷。

相關文章
相關標籤/搜索