「python」文字列をファイルに保存するコード
pythonコード
def save(filename, contents):
fh = open(filename, 'w’)
fh.write(contents)
fh.close()
save('file.name’, 'sample ')
Coding Changes the World
pythonコード
def save(filename, contents):
fh = open(filename, 'w’)
fh.write(contents)
fh.close()
save('file.name’, 'sample ')