diff options
author | Prabhu Ramachandran | 2016-12-22 18:36:15 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2016-12-22 18:36:15 +0530 |
commit | c28e567f5789bf66795a6894e506fbb5a7228ca4 (patch) | |
tree | d4ac611d287ba0c2ec0bacb6f3675c2871f43fc0 | |
parent | ec9e25ee2f401901ff3abc1722ec774ccdba7d8f (diff) | |
download | python-workshops-c28e567f5789bf66795a6894e506fbb5a7228ca4.tar.gz python-workshops-c28e567f5789bf66795a6894e506fbb5a7228ca4.tar.bz2 python-workshops-c28e567f5789bf66795a6894e506fbb5a7228ca4.zip |
Fix old print statement.
-rw-r--r-- | scipy/basic/session2a.tex | 2 |
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} |