python操作檔案寫入內容

lanyu發表於2021-09-09

[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/,如需轉載,請註明出處,否則將追究法律責任。

相關文章