Python小工具—txt转excel和word

打印 上一主题 下一主题

主题 972|帖子 972|积分 2916

1.txt转excel

  1. import openpyxl
  2. # 创建一个新的Excel工作簿
  3. wb = openpyxl.Workbook()
  4. sheet = wb.active
  5. # 题干和答案的标题
  6. sheet['A1'] = '题干'
  7. sheet['B1'] = '答案'
  8. # 打开txt文件并读取内容
  9. with open('xiti.txt', 'r', encoding='utf-8') as file:
  10.     lines = file.readlines()
  11. # 初始变量
  12. current_question = []
  13. current_answer = ''
  14. row = 2  # 从第二行开始写入数据
  15. # 遍历文件内容
  16. for line in lines:
  17.     line = line.strip()  # 去除每行的两端空白字符
  18.     if line.startswith('答案'):
  19.         # 遇到答案关键字,保存当前题干
  20.         if current_question:
  21.             question_text = '\n'.join(current_question)
  22.             sheet.cell(row=row, column=1).value = question_text
  23.             # 保存当前答案,并重置current_answer
  24.             sheet.cell(row=row, column=2).value = current_answer
  25.             row += 1
  26.         # 保存答案文本,并重置current_question
  27.         current_answer = line[len('答案'):].strip()
  28.   
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

花瓣小跑

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表