author | Puneeth Chaganti <punchagan@fossee.in> |
Fri, 08 Oct 2010 11:32:09 +0530 | |
changeset 252 | 0ff3f1a97068 |
parent 238 | c507e9c413c6 |
child 331 | e3136f576acb |
permissions | -rw-r--r-- |
238
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
1 |
Creating a tuple:\\ |
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
2 |
{\ex \lstinline| t = (1, "hello", 2.5)|} |
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
3 |
|
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
4 |
Accessing elements of tuples:\\ |
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
5 |
{\ex \lstinline| t[index] Ex: t[2]|} |
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
6 |
|
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
7 |
Accessing slices of tuples:\\ |
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
8 |
{\ex \lstinline| t[start:stop:step]|} |
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
9 |
|
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
10 |
Swapping values:\\ |
c507e9c413c6
Converted the parsing_data into new template form
Nishanth <nishanth@fossee.in>
parents:
diff
changeset
|
11 |
{\ex \lstinline| a, b = b, a|} |