python操作檔案寫入內容
[root@bogon ~]# cat file.py
#/usr/bin/env python
# coding: utf-8
ecs="efwefwffrfrer"
ipaddrr="192.168.56.10"
print type(ecs+ " "+ipaddrr+" has stopeed")
def write_result(str):
writeresult=file(r'/tmp/ecs.log','a+')
str1=writeresult.write(str+'n')
writeresult.close()
return str
if __name__ == "__main__":
write_result(ecs+ " "+ipaddrr+" has stopeed")
[root@bogon ~]#
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2035/viewspace-2802744/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- git將指定內容寫入檔案Git
- python 檔案操作(二) 替換性修改檔案內容Python
- python excel 內容寫入mysqlPythonExcelMySql
- python檔案讀寫操作Python
- offsetLeft offsetTop // DOM操作,之寫入內容
- python 檔案操作入門Python
- java檔案相關(檔案追加內容、檔案內容清空、檔案內容讀取)Java
- Python入門教程之檔案讀寫操作知識Python
- python中修改檔案行內容Python
- python 寫入CSV檔案Python
- python---json檔案寫入PythonJSON
- 把list集合的內容寫入到Xml中,通過XmlDocument方式寫入Xml檔案中XML
- Python中的檔案的讀寫操作Python
- Python之檔案讀寫補充——R+模式下修改中文內容Python模式
- python對json格式原檔案追加內容PythonJSON
- Python基礎入門(9)- Python檔案操作Python
- canvas 寫入文字內容Canvas
- Java HDFS API 追加檔案寫入內容異常問題的解決JavaAPI
- pytesseract實現識別pdf檔案並將內容寫入word文件中
- 用python寫一個指令碼,讀取srt檔案中的內容,並列印出重複的內容,且將不重複的內容儲存到新檔案中Python指令碼
- Python中的檔案讀寫-實際操作Python
- Python內建庫:pathlib(檔案路徑操作)Python
- python實現修改xml檔案內容詳解PythonXML
- Java對txt檔案內容的增刪該查操作Java
- Python操作檔案Python
- 檔案內容比較
- python檔案建立、讀取和寫入Python
- vim內替換檔案內容
- 如何使用python指令碼定時清空檔案內容?Python指令碼
- win10搜尋檔案內容怎麼操作_win10如何搜尋文件內的內容Win10
- C++寫檔案操作C++
- 說說在 Python 中,如何寫入檔案Python
- 【淺出 PHP】PHP 檔案操作 寫檔案PHP
- git檢視檔案內容Git
- 檔案內容對比工具
- python_檔案操作Python
- 1.4.0 Python檔案操作Python
- Python 檔案操作(一)Python