python 3 파일 을 읽 고 몇 줄 을 지정 하고 다른 파일 을 기록 합 니 다.

743 단어 Python
# Copyright (c)2018,           
# All rightsreserved
#     :readfile.py
#      :  
#    :            ,       
# coding:utf-8
import numpy as np
import csv
file_path='.\blogCatalog-groups.txt'
path='.\blogCatalog_part_convert.txt'
data = []
# #  
with open(file_path,encoding='utf-8',) as txtfile:
    line=txtfile.readlines()
    for i,rows in enumerate(line):
        if i in range(5158,len(line)) :  #       
            print(rows)
            data.append(rows)
print("length",len(data))
txtfile.close()
# #  
with open(path,"w",) as f:

  for i in range(len(data)):
      f.writelines(data[i])
f.close()

바 쁘 고 게 을 러 서 오랫동안 자신 이 만 든 것 을 기록 하지 못 했 으 니, 자신 이 견지 하 기 를 바란다.

좋은 웹페이지 즐겨찾기