summaryrefslogtreecommitdiff
path: root/advanced_python/oop_basics.tex
diff options
context:
space:
mode:
authorPrabhu Ramachandran2017-11-17 13:55:12 +0530
committerPrabhu Ramachandran2017-11-17 13:55:12 +0530
commit5f87e0ae8e4460dc8b5c6649b011a3b382228504 (patch)
tree6ff10100ff6d923d4f081028b5e650907d856b22 /advanced_python/oop_basics.tex
parent89158d47b5f02b4f2029cbf70b7fb47aa6ae01b5 (diff)
downloadpython-workshops-5f87e0ae8e4460dc8b5c6649b011a3b382228504.tar.gz
python-workshops-5f87e0ae8e4460dc8b5c6649b011a3b382228504.tar.bz2
python-workshops-5f87e0ae8e4460dc8b5c6649b011a3b382228504.zip
Add many exercises.
Diffstat (limited to 'advanced_python/oop_basics.tex')
-rw-r--r--advanced_python/oop_basics.tex125
1 files changed, 125 insertions, 0 deletions
diff --git a/advanced_python/oop_basics.tex b/advanced_python/oop_basics.tex
index 1da56fb..d6f4e24 100644
--- a/advanced_python/oop_basics.tex
+++ b/advanced_python/oop_basics.tex
@@ -177,15 +177,140 @@ In []: type(bdfl)
\end{frame}
\begin{frame}[fragile]
+ \frametitle{Changing/adding attributes}
+\begin{lstlisting}
+In []: talk.speaker = 'Arun K P'
+
+In []: talk.tags = 'python,bioscience'
+\end{lstlisting}
+\pause
+\begin{lstlisting}
+# Adding attributes
+
+In []: talk.x = 1
+
+In []: talk.y = 'hello'
+\end{lstlisting}
+\end{frame}
+
+\begin{frame}
\frametitle{Summary}
\begin{itemize}
\item Introduction to Object Oriented Programming
\item A simple example
\item Defining a \lstinline{class}
\item Methods and attributes: encapsulation
+ \item Changing/adding attributes
\end{itemize}
\end{frame}
+\begin{frame}[fragile]
+ \frametitle{Exercise: simplest class}
+ \begin{block}{}
+ Create the simplest possible class, called \lstinline{Simple}, which has
+ no attributes or methods. Try this out on your own IPython interpreters.
+ You should be able to instantiate it as follows:
+ \end{block}
+\begin{lstlisting}
+In []: s = Simple()
+\end{lstlisting}
+ \pause
+ \begin{block}{Hint}
+ Remember the \lstinline{pass} statement?
+ \end{block}
+\end{frame}
+
+
+\begin{frame}[plain, fragile]
+ \frametitle{Solution}
+\begin{lstlisting}
+class Simple:
+ pass
+\end{lstlisting}
+ \vspace*{0.5in}
+
+ That is all!
+\end{frame}
+
+\begin{frame}[fragile,plain, fragile]
+ \frametitle{Exercise: \lstinline{Person} class 1}
+ \begin{block}{}
+ Create a simple \lstinline{Person} class with two attributes: a
+ \lstinline{name} (a string) and an \lstinline{age} (a float). To be used
+ as follows:
+ \end{block}
+\begin{lstlisting}
+In []: p = Person('Arun', 22.0)
+\end{lstlisting}
+\end{frame}
+
+
+\begin{frame}[plain, fragile]
+ \frametitle{Solution}
+\begin{lstlisting}
+class Person:
+ def __init__(self, name, age):
+ self.name = name
+ self.age = age
+\end{lstlisting}
+\end{frame}
+
+\begin{frame}[plain, fragile]
+ \frametitle{Exercise: \lstinline{Person} class 2}
+ \begin{block}{}
+ Create a simple \lstinline{Person} class with two attributes a
+ \lstinline{name} and an \lstinline{age}. However, let the name default to
+ the string \lstinline{'name'} and the age default to 0.0.
+ \end{block}
+\begin{lstlisting}
+In []: p = Person()
+In []: print(p.name, p.age)
+name 0.0
+\end{lstlisting}
+\end{frame}
+
+\begin{frame}[plain, fragile]
+ \frametitle{Solution}
+\begin{lstlisting}
+class Person:
+ def __init__(self, name='name', age=0.0):
+ self.name = name
+ self.age = age
+\end{lstlisting}
+\end{frame}
+
+\begin{frame}[fragile,plain, fragile]
+ \frametitle{Exercise: simple method}
+ \begin{block}{}
+ Create a simple \lstinline{Person} class with two attributes as before.
+ Add a method called \lstinline{birthday} which takes no arguments and
+ which prints \lstinline{'HBD <name>'} and also increases the age by 1.
+ Note that \lstinline{<name>} is the name of the instance.
+ \end{block}
+
+\begin{lstlisting}
+In []: p = Person(name='Ram')
+In []: p.birthday()
+HBD Ram
+In []: p.age
+Out[]: 1.0
+\end{lstlisting}
+\end{frame}
+
+\begin{frame}[plain, fragile]
+ \frametitle{Solution}
+\begin{lstlisting}
+class Person:
+ def __init__(self, name='name', age=0.0):
+ self.name = name
+ self.age = age
+
+ def birthday(self):
+ print('HBD', self.name)
+ self.age += 1.0
+\end{lstlisting}
+\end{frame}
+
\end{document}