为了账号安全,请及时绑定邮箱和手机立即绑定

代码不能理解

if isinstance(max_features, int):
    count = sorted(list(count.items()), key=lambda x:x[1])
    if max_features is not None and len(count) > max_features:
        count = count[-int(max_features):]
    for w, _ in count:
        self.dict[w] = len(self.dict)
else:
    for w in sorted(count.keys()):
        self.dict[w] = len(self.dict)
        
 求这段代码的理解

spacer.gif


正在回答

2 回答

Python

0 回复 有任何疑惑可以回复我~

刚开始是不能理解代码的,原因是基础知识不明白,去学基础知识,再回来一个一个代码分析,翻译成能理解的逻辑。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

代码不能理解

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信