tuples/quickref.tex
author Amit Sethi
Thu, 11 Nov 2010 12:19:32 +0530
changeset 466 00c1ba1cb9ef
parent 232 da873a5ac918
permissions -rw-r--r--
Changes in getting started with list. Elaborating some points as suggested in review
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
232
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     1
Creating a tuple:\\
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     2
{\ex \lstinline|    t = (1, "hello", 2.5)|}
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     3
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     4
Accessing elements of tuples:\\
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     5
{\ex \lstinline|    t[index] Ex: t[2]|}
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     6
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     7
Accessing slices of tuples:\\
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     8
{\ex \lstinline|    t[start:stop:step]|}
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
     9
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    10
Swapping values:\\
da873a5ac918 made the tuples.rst into new template form
Nishanth <nishanth@fossee.in>
parents:
diff changeset
    11
{\ex \lstinline|    a, b = b, a|}