python print語句的快捷語法

2021-07-17 03:55:10 字數 811 閱讀 8824

1》print 語句的快捷語法可以用於寫入任何開啟的檔案 (或者是類檔案物件)

>>> f=open(r'c:\users\91135\desktop\print.txt','w')

>>> print 'hello world!' #標準輸出

hello world!

>>> print >> f,'hello world!' #將單個print語句重定向到開啟的檔案物件f,而且不影響後面的print語句

>>> f.close()

>>> f=file(r'c:\users\91135\desktop\print.txt','r')

>>> f.read()

'hello world!\n' # print會在要列印的字串後面加上乙個硬回車

>>> f.close()

>>> print 'hello python' #標準輸出

hello python

2》將單個print語句重定向到stderr,而且不影響後面的print語句

>>> print 'hello world!' #標準輸出  

hello world!

>>> import sys

>>> print >> sys.stderr,'hello world!' #將單個print語句重定向到stderr,而且不影響後面的print語句

hello world!

>>> print 'hello world!' #標準輸出

hello world!

8 21 2 深入finally語句快

關於finally語句塊 1.finally語句塊可以直接和try語句塊聯用。try.finally.2.try.catch.finally 也可以.3.在finally語句塊中的 是一定會執行的。4.finally語句塊是一定會執行的,所以通常在程式中為了保證某資源一定會釋放,所以一般在final...

python print含有中文的list

python 的 list 如果有中文的話,會印出 xe4 xb8.等等的編碼 如下所示 要如何印出中文呢?a 中文 ab print a xe4 xb8 xad xe6 x96 x87 ab 下述列出幾種作法 1.使用 decode string escape 來達成 a 中文 ab print ...

python print輸出有顏色的字型

def log str,color red background default effect default 顏色日誌 033 顯示方式 字型色 背景色m.033 0m 黑色 紅色 綠色 黃色 藍色 紫紅 靛藍 白色 color color 黑色 紅色 綠色 黃色 藍色 紫紅 靛藍 白色 back...