Python File write() 方法
概述
write() 方法用于向文件中寫入指定字符串。
在文件關(guān)閉前或緩沖區(qū)刷新前,字符串內(nèi)容存儲在緩沖區(qū)中,這時你在文件中是看不到寫入的內(nèi)容的。
語法
write() 方法語法如下:
fileObject.write( [ str ])
參數(shù)
-
str -- 要寫入文件的字符串。
返回值
該方法沒有返回值。
實例
以下實例演示了 write() 方法的使用:
#!/usr/bin/python # -*- coding: UTF-8 -*- # 打開文件 fo = open("test.txt", "w") print "文件名為: ", fo.name str = "W3Cschool教程" fo.write( str ) # 關(guān)閉文件 fo.close()
以上實例輸出結(jié)果為:
文件名為: test.txt
查看文件內(nèi)容:
$ cat test.txt W3Cschool教程
更多建議: