我正在使用一本书来学习python:
有一个文件Recommend.py,其中包含所有这些代码
当我在命令行上执行命令
时reload(recommendations)
>>> recommendations.sim_distance(recommendations.critics,
... 'Lisa Rose','Gene Seymour')
它给了我以下错误
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
reload(recommendations)
NameError: name 'recommendations' is not defined
答案 0 :(得分:1)
您只需在运行脚本之前导入recommendations
。