From 7e4e72d9ce7d45ddd395b3202b5a78f962a460ed Mon Sep 17 00:00:00 2001 From: Prabhu Ramachandran Date: Sat, 4 Feb 2017 00:27:55 +0530 Subject: Fix typo in solution. --- basic_python/basics.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basic_python') diff --git a/basic_python/basics.tex b/basic_python/basics.tex index 9cca510..28aa214 100644 --- a/basic_python/basics.tex +++ b/basic_python/basics.tex @@ -511,8 +511,8 @@ In []: a*10 + b == x \frametitle{Another Solution} \begin{lstlisting} In []: sx = str(x) -In []: a = int(sx[0]]) -In []: b = int(sx[1]]) +In []: a = int(sx[0]) +In []: b = int(sx[1]) In []: a*10 + b == x \end{lstlisting} \end{frame} -- cgit