# HG changeset patch # User Nishanth # Date 1286817726 -19800 # Node ID af48ecb4dc11032bca2c7067a8b77c3991e4a63a # Parent 8d61625510b606ee974128f6cd57bc3062afcd45 Added quickref diff -r 8d61625510b6 -r af48ecb4dc11 additional_ipython/quickref.tex --- a/additional_ipython/quickref.tex Mon Oct 11 22:44:55 2010 +0530 +++ b/additional_ipython/quickref.tex Mon Oct 11 22:52:06 2010 +0530 @@ -1,11 +1,15 @@ -Creating a tuple:\\ -{\ex \lstinline| t = (1, "hello", 2.5)|} +accessing history:\\ +{\ex \lstinline| \%hist|} -Accessing elements of tuples:\\ -{\ex \lstinline| t[index] Ex: t[2]|} +accessing particular line of history:\\ +{\ex \lstinline| \%hist line_number|} -Accessing slices of tuples:\\ -{\ex \lstinline| t[start:stop:step]|} +accessing particular range of history:\\ +{\ex \lstinline| \%hist start_line stop_line|} -Swapping values:\\ -{\ex \lstinline| a, b = b, a|} +saving history to a file:\\ +{\ex \lstinline| \%save file_path line_numbers|} + +running a script:\\ +{\ex \lstinline| \%run -i file_path|} +