「python」文字列をファイルに保存するコード

pythonコード
def save(filename, contents):
fh = open(filename, 'w’)
fh.write(contents)
fh.close()
save('file.name’, 'sample ')

Python

Posted by arkgame