blob: d9a9bd82e4f58e21c37fc0cae8e3165e47193876 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
\frametitle {Why are they useful?}
\small
\begin{lstlisting}
for element in (1, 2, 3):
print element
for key in {'one':1, 'two':2}:
print key
for char in "123":
print char
for line in open("myfile.txt"):
print line
for line in urllib2.urlopen('http://site.com'):
print line
\end{lstlisting}
|