按指定行數分割文件

將文本文件按照指定的行數分割成數個小的文本文件python #! /usr/bin/env python # -*- coding: utf-8 -*- LIMIT=1000 file_count=0 url_list=[] with open("123.txt") as f: for line in f: url_list.append(line) i
相關文章
相關標籤/搜索