python讀取文件後切片

 

from itertools import islice
with open(「1.txt") as f:
    for a in islice(f,0,2):
        print(a)
相關文章
相關標籤/搜索