Python; get last answer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:59:51Z http://stackoverflow.com/feeds/question/200020 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/200020/python-get-last-answer 16 Python; get last answer Ambush Commander 2008-10-14T04:31:49Z 2008-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#200027 30 Answer by Mark Cidade for Python; get last answer Mark Cidade 2008-10-14T04:35:08Z 2008-10-14T04:35:33Z <p>Underscore.</p> <pre><code>&gt;&gt;&gt; 5+5 10 &gt;&gt;&gt; _ 10 &gt;&gt;&gt; _ + 5 15 &gt;&gt;&gt; _ 15 </code></pre> http://stackoverflow.com/questions/200020/python-get-last-answer/200045#200045 14 Answer by Peter Hoffmann for Python; get last answer Peter Hoffmann 2008-10-14T04:53:38Z 2008-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>