python讀取文件特定的行數

from itertools import islice
f=open("pyhpd.txt")
for a in islice(f,2,6):
    print(a)
相關文章
相關標籤/搜索