ipython: automatically echo result of assignment s

2019-02-09 11:59发布

This question already has an answer here:

Is there a way to make iPython automatically echo the result of an assignment statement?

For example, in MATLAB, ending an assignment statement without a semicolon prints the result of the assignment, and putting a semicolon at the end of the statement suppresses any output.

>> b=1+2

b =

     3

>> b=1+2;
>> 

I want to be able to do something similar in iPython. However, currently I have to use two separate statements if I want to see the assignment result:

In [32]: b=1+2

In [33]: b
Out[33]: 3

1条回答
对你真心纯属浪费
2楼-- · 2019-02-09 12:19

Assignment is purely a statement in Python, so you'd have to compile the code, walk the AST, find the assignment, and then print the variable's repr() after running it.

查看更多
登录 后发表回答