pyhon如何写入txt文件

Posted Next Step

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyhon如何写入txt文件相关的知识,希望对你有一定的参考价值。

pyhon如何写入txt文件  

1.创建txt文件 open + w

2.写入文件 write() 方法

 

 

def ssh_session(ip, output_q):

    SW = {\'device_type\': \'cisco_ios\', \'ip\': ip, \'username\': \'admin\', \'password\': \'123456789\'}
    filename = u\'%s_%s_%s.txt\' % (ips.strip(), cmd.replace(\' \', \'_\'), timestr)
    net_connect = ConnectHandler(**SW)
    save = open(filename, \'w\')
    result = net_connect.send_command(cmd)
    save.write(result)
    net_connect.disconnect()

 

以上是关于pyhon如何写入txt文件的主要内容,如果未能解决你的问题,请参考以下文章

记录C#常用的代码片段

java代码 如何向TXT文件写入内容?

新手pyhoner的指定内容读取和写入的思路

如何将MATLAB的输出写入txt文件?

如何使用 VBA 创建和写入 txt 文件

如何将我的整个输出从iPython笔记本保存为.txt文件?