diff -r d9507624eb8f -r 641a6ee868c0 writing_python_scripts/quickref.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/writing_python_scripts/quickref.tex Mon Oct 11 13:41:01 2010 +0530 @@ -0,0 +1,11 @@ +Creating a tuple:\\ +{\ex \lstinline| t = (1, "hello", 2.5)|} + +Accessing elements of tuples:\\ +{\ex \lstinline| t[index] Ex: t[2]|} + +Accessing slices of tuples:\\ +{\ex \lstinline| t[start:stop:step]|} + +Swapping values:\\ +{\ex \lstinline| a, b = b, a|}