From 85bdab6f2ffb381dcf654c395732ba0038816c5a Mon Sep 17 00:00:00 2001 From: Prabhu Ramachandran Date: Tue, 7 Feb 2017 23:19:47 +0530 Subject: Fix some errors in the slides. --- basic_python/control_flow.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basic_python/control_flow.tex') 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} -- cgit