我在python中运行代码时出现问题;
from helpers import process_titanic_line
print(process_titanic_line(lines[0]))
我得到的错误是;
ImportError Traceback (most recent call last)
<ipython-input-29-56917437b562> in <module>()
1 #NOT WORKING
2
----> 3 from helpers import process_titanic_line
4 print(process_titanic_line(lines[0]))
ImportError: No module named helpers
非常感谢任何帮助。
谢谢
答案 0 :(得分:0)
我必须将helpers模块上传到python。我是通过上传项目的helpers.py文件来完成的。我要感谢为讨论作出贡献的所有人。