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文件的主要内容,如果未能解决你的问题,请参考以下文章