ATOM函数返回值错误

时间:2018-11-04 20:22:26

标签: python function return-value interactive-mode

我有以下代码:

def do_math(a, b, kind = 'add' ):  

    if (kind=='add'):  
       return a+b  

    else:
       return a-b

do_math(1, 2)

我使用了此页面,以便将ATOM转换为交互模式:

https://github.com/foreshadow/atom-python-run/wiki/12-How-Do-I-Use-atom-python-run#interactive-mode

但是它返回1,而不是预期的3。

这是屏幕截图:

Atom View, look at the returned value at the bottom...

我应该如何处理/解决此问题,因此返回的值为3?


1 个答案:

答案 0 :(得分:1)

我不使用Atom,但是我要推断,当它在底部显示file:1时,实际上是指文件的第一行。勾号表示代码可能会编译。

您需要在Function调用周围添加一个print(),以便可以将结果打印到控制台。