零基礎學python-3.7 另一個程式

來源:互聯網
上載者:User

標籤:python   文本編輯   

今天我們引入另外一個程式,檔案的讀寫

我們先把簡單的程式碼貼上,然後通過我們多次的改進,希望最後能夠變成一個簡單的文字編輯器

下面是我們最簡單的代碼:

'crudfile--讀寫檔案'def readWholeFile(fileName):    '讀取整個檔案'    file = open(fileName, mode='r')    text = []    for eachLine in file:        print(eachLine)        text.append(eachLine)    return textdef writeFile(fileName):    '寫檔案'    handler = open(fileName, mode='w')    while True:        inputText = input('>')        if inputText == 'exit':            break        else:            handler.write(inputText) try:    fileName = "test.txt"    writeFile(fileName);    textInFile = readWholeFile(fileName);except IOError as e:    print(e)    print('檔案不存在')


 

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

零基礎學python-3.7 另一個程式

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.