学习使人痛苦 2022-04-08 22:18 采纳率: 66.7%
浏览 72
已结题

读取TXT文件内容到词典,以逗号和换行符为分割单位

读取TXT文件内容到词典,以逗号和换行符为分割单位
def open_dict(Dict = 'hh', path=r'data/Textming'):
path = path + '%s.txt' % Dict
dictionary = open(path, 'r', encoding='utf-8')
dict = []
for word in dictionary:
word = word.strip('\n'or',')
dict.append(word)
return dict
用or对吗,没报错,但是没结果

  • 写回答

3条回答 默认 最新

  • A-Chin 2022-04-08 22:41
    关注

    可以参考博客 python split指定多个分隔符,链接:https://blog.csdn.net/haodawei123/article/details/99543776

    代码给出了 open_dict 函数部分:

    
    import re
    def open_dict(Dict = 'hh', path=r'data/Textming'):
        path = path + '%s.txt' % Dict
        dictionary = open(path, 'r', encoding='utf-8')
        dict = []
        for word in dictionary:
            word = re.split('[\n,]', word)
            for i in word:
                if i == '':
                    continue
                dict.append(i)
    
        return dict
    

    img

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(2条)

报告相同问题?

问题事件

  • 系统已结题 4月17日
  • 已采纳回答 4月9日
  • 创建了问题 4月8日

悬赏问题

  • ¥15 对于这个复杂问题的解释说明
  • ¥50 三种调度算法报错 采用的你的方案
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败