Skip to content Skip to main navigation Skip to footer

python保存字符串到文件的方法

python保存字符串到文件是如何来实现的呢?下面的内容将会通过具体的实例来演示python保存字符串到文件的实现方法及相关技巧:

本文实例讲述了python保存字符串到文件的方法。分享给大家供大家参考。具体实现方法如下:

def save(filename, contents):
  fh = open(filename, 'w')
  fh.write(contents)
  fh.close()
save('file.name', 'some stuff')
 


python保存字符串到文件就是这样,欢迎大家参考。。。。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.