Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 django 的新手,我正在尝试将来自表单提交的响应链接到我在另一个文件中编写的几个 python 方法,这些方法将使用用户输入作为参数。我想知道如何导入这些方法并打印它们的结果。
我的 python 文件被命名Crunch.py并位于views.py我尝试过的同一目录中:from Crunch import * 但它不起作用。我想知道我是否需要将文件移动到其他地方,或者我需要写什么来从 Crunch 导入所有方法。
Crunch.py
views.py
from Crunch import *
尝试以下
from <app name>.Crunch import *