diff options
Diffstat (limited to 'advanced_python/slides/lambda.tex')
-rw-r--r-- | advanced_python/slides/lambda.tex | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/advanced_python/slides/lambda.tex b/advanced_python/slides/lambda.tex index 2ac7701..25c4f97 100644 --- a/advanced_python/slides/lambda.tex +++ b/advanced_python/slides/lambda.tex @@ -105,23 +105,6 @@ \begin{frame}[fragile] \frametitle{\texttt{map} \ldots} - \begin{itemize} - \item Takes a function and a sequence as arguments - \item Calls function with each element of sequence as argument - \item Returns a sequence with all the results as elements - \item We solve the easier problem first, using \texttt{map} - \end{itemize} - - \begin{lstlisting} - def moonize(weight): - return weight/6.0 - - map(moonize, weights) - \end{lstlisting} -\end{frame} - -\begin{frame}[fragile] - \frametitle{\texttt{map} \ldots} \begin{lstlisting} def migrate(weight): if weight < 50: |