我从堆栈溢出中获得了这段代码,但是当我尝试执行命令时,我得到了一个错误。代码和错误在下面给出。如果有人可以提供帮助,我将不胜感激:
from __winreg import *
Traceback (most recent call last):
File "<ipython-input-35-f6f8c1a0ffdd>", line 1, in <module>
from __winreg import *
ModuleNotFoundError: No module named '__winreg'
我收到以下错误:
CountVectorizer
答案 0 :(得分:0)
如Python 2 documentation for _winreg所述,
_winreg模块已在Python 3中重命名为winreg。将源转换为Python 3时,2to3工具将自动适应导入。
检查您的Python版本。如果是Python 3,则将模块引用重命名为winreg
(不带下划线)。查看Python 3 documentation。