diff options
author | Prabhu Ramachandran | 2017-02-07 23:19:47 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2017-02-07 23:19:47 +0530 |
commit | 85bdab6f2ffb381dcf654c395732ba0038816c5a (patch) | |
tree | 66e7ac3477b3ca5c8b0e7d7452f0e5d2e7d005f8 /basic_python/control_flow.tex | |
parent | 5bcd987d702e5e8653538713c0f48889853eef7a (diff) | |
download | python-workshops-85bdab6f2ffb381dcf654c395732ba0038816c5a.tar.gz python-workshops-85bdab6f2ffb381dcf654c395732ba0038816c5a.tar.bz2 python-workshops-85bdab6f2ffb381dcf654c395732ba0038816c5a.zip |
Fix some errors in the slides.
Diffstat (limited to 'basic_python/control_flow.tex')
-rw-r--r-- | basic_python/control_flow.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic_python/control_flow.tex b/basic_python/control_flow.tex index 373b1a6..25d9cbc 100644 --- a/basic_python/control_flow.tex +++ b/basic_python/control_flow.tex @@ -174,7 +174,7 @@ In []: while b < 30: \begin{lstlisting} In []: a, b = 0, 1 In []: while b < 30: - ...: print(b, end='') + ...: print(b, end=' ') ...: a, b = b, a + b ...: ...: @@ -394,7 +394,7 @@ while x < 1000: \item Conditionals: \kwrd{if elif else} \item Looping: \kwrd{while} \& \kwrd{for} \item \typ{range} - \item \kwrd{break, continue, while} + \item \kwrd{break, continue, pass} \item Solving simple problems \end{itemize} \end{frame} |