使用python将txt转换为excel

txt格式为 

892天平天国定都在?A开封B南京C北京(B)

# coding=utf-8
'''
main function:主要实现把txt中的每行数据写入到excel中
'''

#################
#第一次执行的代码
import xlwt #写入文件
import xlrd #打开excel文件
import os

txtFileName = 'questions.txt'
excelFileName = 'questions.xls'


if os.path.exists(excelFileName):
	os.remove(excelFileName)


fopen = open(txtFileName, 'r')

lines = fopen.readlines()

#新建一个excel文件
file = xlwt.Workbook(encoding='utf-8',style_compression=0)

#新建一个sheet
sheet = file.add_sheet('data')

############################
#写入写入a.txt,a.txt文件有20000行文件
i=0
j=0
for line in lines:
	indexA = line.find('A')	
	questionStr = line[0:indexA]
	questionStr.lstrip()

	indexB = line.find('B')
	answerA = line[indexA:indexB]

	indexC = line.find('C')
	indexE = line.find('(')
	
	answerB = ''
	if indexC>0:
		answerB = line[indexB:indexC]
	else:
		answerB = line[indexB:indexE]

	indexD = line.find('D')

	answerC = ''
	answerD = ''
	if indexD>0:
		answerC = line[indexC:indexD]
		answerD = line[indexD:indexE]
	else:
		answerC = line[indexC:indexE]

	
	answer = line[line.find('('):line.find(')')]			
	
	cindex = 0
	questionStrCopy = ''
	for c in questionStr:
		if cindex<3:
			if c>='0' and c<='9':
				questionStrCopy = questionStr[cindex+1:]
		cindex = cindex + 1	
	
	answerA = answerA[1:]
	answerB = answerB[1:]
	answerC = answerC[1:]
	answerD = answerD[1:]
	answer  = answer.strip('(')
	print answer
	print questionStrCopy, answerA, answerB, answerC, answerD, answer
	
	questionStrCopy = questionStrCopy.lstrip()
	if questionStrCopy=='' or answerA=='' or answer=='':
		continue
	
	sheet.write(i, 0 , questionStrCopy)
	sheet.write(i, 1 , answerA)
	sheet.write(i, 2 , answerB)
	sheet.write(i, 3 , answerC)
	sheet.write(i, 4 , answerD)
	sheet.write(i, 5 , answer)
	i = i + 1

file.save(excelFileName)
  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值