一步一例學python–讀取控制台輸入記錄到檔案

來源:互聯網
上載者:User

從今天起,多寫些小例子,鍛煉自己,從大家都不鳥的小段代碼開始。

今天弄一個從控制台輸入資訊,然後記錄到當前路徑下的一個固定檔案中。很簡單:

 

import osfname=raw_input('Enter file name:')myf= open(fname,'w')while True:    text=raw_input('Enter text[exit to quit]: ')    if text!='exit':        print text        myf.write(text)        myf.write(os.linesep)    else:        breakmyf.close()print 'exit'

 D:\prj\py>python read_text.py

Enter file name:log.infoEnter text[exit to quit]: 你好啊,傻逼你好啊,傻逼Enter text[exit to quit]: 昂昂Enter text[exit to quit]: 你也好,聰明蛋你也好,聰明蛋Enter text[exit to quit]: 嗯哪嗯哪Enter text[exit to quit]: 最近忙啥咧?最近忙啥咧?Enter text[exit to quit]: 最近不忙最近不忙Enter text[exit to quit]: 那就好好休息吧那就好好休息吧Enter text[exit to quit]: 多鍛煉身體a多鍛煉身體aEnter text[exit to quit]: ennaennaEnter text[exit to quit]: 好的好的Enter text[exit to quit]: exitexit

組建檔案:log.info,成功!

嘎嘎!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.