Created
March 28, 2015 05:52
-
-
Save ChillarAnand/3775266d883e3857308d to your computer and use it in GitHub Desktop.
ipython tips tricks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In [1]: 1 + 2 | |
Out[1]: 3 | |
In [2]: 2 + 3 | |
Out[2]: 5 | |
In [3]: _ + 1 | |
Out[3]: 6 | |
In [4]: _ | |
Out[4]: 6 | |
In [5]: _1 | |
Out[5]: 3 | |
In [6]: _2 | |
Out[6]: 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment