「Python入門」File next() のサンプル

2017年12月24日

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()

Python

Posted by arkgame