Python; get last answer - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T03:59:51Zhttp://stackoverflow.com/feeds/question/200020http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/200020/python-get-last-answer16Python; get last answerAmbush Commander2008-10-14T04:31:49Z2008-10-14T04:53:38Z
<p>In many symbolic math systems, such as Matlab or Mathematica, you can use a variable like <code>Ans</code> or <code>%</code> to retrieve the last computed value. Is there a similar facility in the Python shell?</p>
http://stackoverflow.com/questions/200020/python-get-last-answer/200027#20002730Answer by Mark Cidade for Python; get last answerMark Cidade2008-10-14T04:35:08Z2008-10-14T04:35:33Z<p>Underscore.</p>
<pre><code>>>> 5+5
10
>>> _
10
>>> _ + 5
15
>>> _
15
</code></pre>
http://stackoverflow.com/questions/200020/python-get-last-answer/200045#20004514Answer by Peter Hoffmann for Python; get last answerPeter Hoffmann2008-10-14T04:53:38Z2008-10-14T04:53:38Z<p>Just for the record, ipython takes this one step further and you can access every result with _ and its numeric value</p>
<pre><code>In [1]: 10
Out[1]: 10
In [2]: 32
Out[2]: 32
In [3]: _
Out[3]: 32
In [4]: _1
Out[4]: 10
In [5]: _2
Out[5]: 32
In [6]: _1 + _2
Out[6]: 42
In [7]: _6
Out[7]: 42
</code></pre>
<p>And it is possible to edit ranges of lines with the %ed macro too:</p>
<pre><code>In [1]: def foo():
...: print "bar"
...:
...:
In [2]: foo()
bar
In [3]: %ed 1-2
</code></pre>