file = open('helloworld.py', 'r') line = file.readline() while line: print line line = file.readline()
https://github.com/kokorohamoe/OpenProfile/blob/simple/700_sample/python/helloworld.py
Permalink | 記事への反応(1) | 08:04
ツイートシェア
そのための with ~ as ~ 構文じゃないか?