manipulating-lists/quickref.tex
author Bhanukiran <bhanukiran@fossee.in>
Wed, 17 Nov 2010 17:30:10 +0530
changeset 519 70faad10e854
parent 423 0f0f4993cffe
permissions -rw-r--r--
Merged heads.

Slicing \& Striding a list:\\
{\ex \lstinline|    A[start:stop:step]|} \lstinline|stop| excluded

Sorting a list:\\
{\ex \lstinline|    sorted(A)|} -- returns new list
{\ex \lstinline|    A.sort()|} -- in-place sort

Reversing a list:\\
{\ex \lstinline|    A[::-1]|} -- returns new list
{\ex \lstinline|    A.reverse()|} -- in-place reverse