python如何把字符串保存到文件中?
本文实例讲述了python保存字符串到文件的方法。分享给大家供大家参考。具体实现方法如下:
def save(filename, contents): fh = open(filename, 'w') fh.write(contents) fh.close() save('file.name', 'some stuff')
希望本文所述对大家的Python程序设计有所帮助。
本文地址:http://www.45fan.com/a/question/15380.html