summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-12-22 18:36:15 +0530
committerPrabhu Ramachandran2016-12-22 18:36:15 +0530
commitc28e567f5789bf66795a6894e506fbb5a7228ca4 (patch)
treed4ac611d287ba0c2ec0bacb6f3675c2871f43fc0
parentec9e25ee2f401901ff3abc1722ec774ccdba7d8f (diff)
downloadpython-workshops-c28e567f5789bf66795a6894e506fbb5a7228ca4.tar.gz
python-workshops-c28e567f5789bf66795a6894e506fbb5a7228ca4.tar.bz2
python-workshops-c28e567f5789bf66795a6894e506fbb5a7228ca4.zip
Fix old print statement.
-rw-r--r--scipy/basic/session2a.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/basic/session2a.tex b/scipy/basic/session2a.tex
index 0230456..964df5a 100644
--- a/scipy/basic/session2a.tex
+++ b/scipy/basic/session2a.tex
@@ -332,7 +332,7 @@ In []: t = [0.90, 1.19, 1.30,
of elements
\begin{lstlisting}
-In []: print len(L), len(t)
+In []: print(len(L), len(t))
\end{lstlisting}
\end{frame}