欢迎关注博主的微信公众号:“智能遥感”。
该公众号将为您奉上Python地学分析、爬虫、数据分析、Web开发、机器学习、深度学习等热门源代码。
# -*- coding: utf-8 -*-
import time
import math
import os
import sys
import os, os.path,shutil
txtPath = 'D:\\data\\txt04\\'
txtPath = txtPath.decode('utf-8')
txtType = 'txt'
txtLists = os.listdir(txtPath) #列出文件夹下所有的目录与文件
for txt in txtLists:
f = open(txtPath+txt) # 返回一个文件对象
lines = f.readlines() # 读取全部内容 ,并以列表方式返回
print(txt)
for row in range(5,len(lines)):
sqlfile = open('D:\\output\\'+txt, "a") # 文件读写方式是追加
line_str = str(lines[row]).decode('gbk')
lists = line_str.split(',')[0:1]+line_str.split(',')[6:16]
sqlfile.writelines(str(' '.join(lists)) + "\n")