工作过程中,将做工程过程中比较常用的一些内容备份一次,下面资料是关于python保存字符串到文件的内容,希望对码农有所用途。
def save(filename, contents):
fh = open(filename, 'w')
fh.write(contents)
fh.close()
save('file.name', 'some stuff')
工作过程中,将做工程过程中比较常用的一些内容备份一次,下面资料是关于python保存字符串到文件的内容,希望对码农有所用途。
def save(filename, contents):
fh = open(filename, 'w')
fh.write(contents)
fh.close()
save('file.name', 'some stuff')