python中sys.stdout、sys.stdin

來源:互聯網
上載者:User

標籤:檔案   err   pre   引用   stderr   對象引用   inf   div   pytho   

1.如果需要更好的控制輸出,而print不能滿足需求,sys.stdout,sys.stdin,sys.stderr就是你需要的。

 

2.sys.stdout與print:

在python中調用print時,事實上調用了sys.stdout.write(obj+‘\n‘)

print 將需要的內容列印到控制台,然後追加一個分行符號

以下兩行代碼等價:

sys.stdout.write(‘hello‘ + ‘\n‘)print(‘hello‘)

 

3.sys.stdin與input

sys.stdin.readline( )會將標準輸入全部擷取,包括末尾的‘\n‘,因此用len計算長度時是把分行符號‘\n‘算進去了的,但是input( )擷取輸入時返回的結果是不包含末尾的分行符號‘\n‘的。

因此如果在平時使用sys.stdin.readline( )擷取輸入的話,不要忘了去掉末尾的分行符號,可以用strip( )函數(sys.stdin.readline( ).strip(‘\n‘))或sys.stdin.readline( )[:-1]這兩種方法去掉換行。

 

4.從控制台重新導向到檔案

原始的sys.stdout指向控制台,如果把檔案的對象引用賦給sys.stdout,那麼print調用的就是檔案對象的write方法。

 

python中sys.stdout、sys.stdin

相關文章

聯繫我們

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