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.
模组.py:
def addone(number): result = number + 1
测试.py:
import mod print mod.addone(2)
我得到的结果是None,所以我猜结果变量丢失了。我的代码中缺少什么。
None
是的,我知道这可以在没有模块的情况下轻松完成,这只是一个示例。
你正在做正确的导入,mod.py 中没有返回结果的方法。改成:
def addone(number): return number + 1
add_one 中缺少“return”,所以你没有