Skip to content

Instantly share code, notes, and snippets.

@ChillarAnand
Created March 28, 2015 05:52
Show Gist options
  • Save ChillarAnand/3775266d883e3857308d to your computer and use it in GitHub Desktop.
Save ChillarAnand/3775266d883e3857308d to your computer and use it in GitHub Desktop.
ipython tips tricks
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