<dd id="sga4y"><optgroup id="sga4y"></optgroup></dd>
<nav id="sga4y"><code id="sga4y"></code></nav>
  • <optgroup id="sga4y"></optgroup>

    習題 16: 讀寫文件?

    如果你做了上一個練習的加分習題,你應該已經了解了各種文件相關的命令(方法/函數)。你應該記住的命令如下:

    • close – 關閉文件。跟你編輯器的 文件->保存.. 一個意思。
    • read – 讀取文件內容。你可以把結果賦給一個變量。
    • readline – 讀取文本文件中的一行。
    • truncate – 清空文件,請小心使用該命令。
    • write(stuff) – 將stuff寫入文件。

    這是你現在該知道的重要命令。有些命令需要接受參數,這對我們并不重要。你只要記住 write 的用法就可以了。 write 需要接收一個字符串作為參數,從而將該字符串寫入文件。

    讓我們來使用這些命令做一個簡單的文本編輯器吧:

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    from sys import argv
    
    script, filename = argv
    
    print "We're going to erase %r." % filename
    print "If you don't want that, hit CTRL-C (^C)."
    print "If you do want that, hit RETURN."
    
    raw_input("?")
    
    print "Opening the file..."
    target = open(filename, 'w')
    
    print "Truncating the file.  Goodbye!"
    target.truncate()
    
    print "Now I'm going to ask you for three lines."
    
    line1 = raw_input("line 1: ")
    line2 = raw_input("line 2: ")
    line3 = raw_input("line 3: ")
    
    print "I'm going to write these to the file."
    
    target.write(line1)
    target.write("\n")
    target.write(line2)
    target.write("\n")
    target.write(line3)
    target.write("\n")
    
    print "And finally, we close it."
    target.close()
    

    這個文件是夠大的,大概是你鍵入過的最大的文件。所以慢慢來,仔細檢查,讓它能運行起來。有一個小技巧就是你可以讓你的腳本一部分一部分地運行起來。先寫 1-8 行,讓它運行起來,再多運行 5 行,再接著多運行幾行,以此類推,直到整個腳本運行起來為止。

    你應該看到的結果?

    你將看到兩樣東西,一樣是你新腳本的輸出:

    $ python ex16.py test.txt
    We're going to erase 'test.txt'.
    If you don't want that, hit CTRL-C (^C).
    If you do want that, hit RETURN.
    ?
    Opening the file...
    Truncating the file.  Goodbye!
    Now I'm going to ask you for three lines.
    line 1: To all the people out there.
    line 2: I say I don't like my hair.
    line 3: I need to shave it off.
    I'm going to write these to the file.
    And finally, we close it.
    $
    

    接下來打開你新建的文件(我的是 test.txt )檢查一下里邊的內容,怎么樣,不錯吧?

    加分習題?

    1. 如果你覺得自己沒有弄懂的話,用我們的老辦法,在每一行之前加上注解,為自己理清思路。就算不能理清思路,你也可以知道自己究竟具體哪里沒弄明白。
    2. 寫一個和上一個練習類似的腳本,使用 readargv 讀取你剛才新建的文件。
    3. 文件中重復的地方太多了。試著用一個 target.write()line1, line2, line3 打印出來,你可以使用字符串、格式化字符、以及轉義字符。
    4. 找出為什么我們需要給 open 多賦予一個 'w' 參數。提示: open 對于文件的寫入操作態度是安全第一,所以你只有特別指定以后,它才會進行寫入操作。

    Project Versions

    Table Of Contents

    Previous topic

    習題 15: 讀取文件

    Next topic

    習題 17: 更多文件操作

    This Page

    97av