ファイル書き込み

Link Reference.

In [2]:
# -*- coding: utf-8 -*-

f = open("write.txt","w")

f.write("書き込みます!")

f.close()
inserted by FC2 system