1,443 views
この記事は最終更新から 1812日 が経過しています。
まずは、Pythonを使ってテキストファイルを作成する。
>>> fh = open('data.txt','w') >>> fh.write('hello\n') >>> fh.write('see you!\n') >>> fh.close() >>> [user@dog-server]$ ls data.txt [user@dog-server]$ [user@dog-server]$ cat data.txt hello see you!
次に、作成したファイルを Pythonで読み込む。
>>> fh = open('data.txt','r') >>> >>> data = fh.read() >>> data 'hello\nsee you!\n' >>> >>> print data hello see you! >>> >>> ary = data.split('\n') >>> ary ['hello', 'see you!', ''] >>> ary[0] 'hello' >>> ary[1] 'see you!'