pythonファイル処理を行単位で読み込む
552 ワード
1.readlineファイル全体を読み込む
2.python2 next()
3.python3 next()
参考記事:Pythonはファイルを1行ずつ読み、最後の行まで
input = open('File','r')
while True:
line = input.readline()
if not line:
break
input.close()
2.python2 next()
input = open('File','r')
for line in input:
line = line1.strip("
")
input.close()
3.python3 next()
input = open('File','r')
for line in input:
line = line1.strip("
")
input.close()
参考記事:Pythonはファイルを1行ずつ読み、最後の行まで