「Python入門」File next() のサンプル
next()
next(iterator[,default])
サンプルコード
#!/usr/bin/python3
# ファイルのオープン
fo = open(“changfa.txt", “r")
print (“ファイル名: “, fo.name)
for index in range(5):
line = next(fo)
print (" %d 行目 – %s" % (index, line))
# ファイルのクローズ
fo.close()