summaryrefslogtreecommitdiff
path: root/tuples/quickref.tex
blob: a0212b31f83ed0c6bb764cad2c227341e19b2c4d (plain)
1
2
3
4
5
6
7
8
9
10
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|}