吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1156|回复: 15
收起左侧

[求助] 小白的python中文词频分析,报错一上午了,但是找不到错误,救救孩子吧

[复制链接]
上衫越 发表于 2022-8-20 11:00
def getText("红楼梦.txt"):
    f = open("红楼梦.txt","r",encoding="utf-8")
    text = f.read()
    f.close()
    return text
import jieba
def wordFreq(红楼梦.txt,text,200):
    words = jieba.lcut(text.strip())
    counts = {}
    for word in words:
        counts[word] = counts.get(word,0) + 1
    items = list(counts.items())
    items.sort(key = lambda x:x[1],reverse = true)
    f = open(filepath[:-4]+'_词频.txt',"w")
    for i in range(topn):
        word, count = items[i]
        f.writelines("{}\t{}\n".format(word,count))
    f.ciose()

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

天真Aro 发表于 2022-8-20 15:04
最后一行 f.ciose()?  i?L?              
luxingyu329 发表于 2022-8-20 15:11
你的传参有问题, 读取文件可以用with open例如
[Python] 纯文本查看 复制代码
def get_text():
    with open("红楼梦.txt","r",encoding="utf-8") as fr:
        return fr.read()
luxingyu329 发表于 2022-8-20 15:16
word_freq("红楼梦.txt",text,200)  这个函数你除了  text  另两个参数没有用到呀?另外最好不要这么传参

另外  filepath  和  topn是全局变量吗?
 楼主| 上衫越 发表于 2022-8-20 15:16
本帖最后由 上衫越 于 2022-8-20 15:18 编辑

呃,不是这的问题,这怎么发图片呀...
 楼主| 上衫越 发表于 2022-8-20 15:20
luxingyu329 发表于 2022-8-20 15:16
word_freq("红楼梦.txt",text,200)  这个函数你除了  text  另两个参数没有用到呀?另外最好不要这么传参
...

能加个微信聊吗 15525199072
MyModHeaven 发表于 2022-8-20 15:22
本帖最后由 MyModHeaven 于 2022-8-20 15:24 编辑

报什么错?

另外,这样好看
[Python] 纯文本查看 复制代码
def getText("红楼梦.txt"):
    f = open("红楼梦.txt","r",encoding="utf-8")
    text = f.read()
    f.close()
    return text
import jieba
def wordFreq(红楼梦.txt,text,200):
    words = jieba.lcut(text.strip())
    counts = {}
    for word in words:
        counts[word] = counts.get(word,0) + 1
    items = list(counts.items())
    items.sort(key = lambda x:x[1],reverse = true)
    f = open(filepath[:-4]+'_词频.txt',"w")
    for i in range(topn):
        word, count = items[i]
        f.writelines("{}\t{}\n".format(word,count))
    f.ciose()
MyModHeaven 发表于 2022-8-20 15:28
肉眼看没看出来几个,复制到 vs code里,全是错误,漏洞百出。你用的什么写代码,不提示吗?
 楼主| 上衫越 发表于 2022-8-20 15:31
luxingyu329 发表于 2022-8-20 15:16
word_freq("红楼梦.txt",text,200)  这个函数你除了  text  另两个参数没有用到呀?另外最好不要这么传参
...

这个是啥意思呢,我就是在这三个变量这报错
 楼主| 上衫越 发表于 2022-8-20 15:37
MyModHeaven 发表于 2022-8-20 15:28
肉眼看没看出来几个,复制到 vs code里,全是错误,漏洞百出。你用的什么写代码,不提示吗?

纯纯小白....大佬球球了
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 07:13

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表