summaryrefslogtreecommitdiff
path: root/conditionals
diff options
context:
space:
mode:
authorPuneeth Chaganti2010-11-10 13:25:46 +0530
committerPuneeth Chaganti2010-11-10 13:25:46 +0530
commit0c4403640d58ff0a367e561b94d3a8a637f52e98 (patch)
tree12d703362eba088e8e860f776320e6d43d1ab4be /conditionals
parentc235b2c9e8af24efb3c39ffdbf0829ba0a9001b2 (diff)
downloadst-scripts-0c4403640d58ff0a367e561b94d3a8a637f52e98.tar.gz
st-scripts-0c4403640d58ff0a367e561b94d3a8a637f52e98.tar.bz2
st-scripts-0c4403640d58ff0a367e561b94d3a8a637f52e98.zip
Reviewed conditionals LO.
Diffstat (limited to 'conditionals')
-rw-r--r--conditionals/script.rst18
-rw-r--r--conditionals/slides.org27
-rw-r--r--conditionals/slides.tex180
3 files changed, 144 insertions, 81 deletions
diff --git a/conditionals/script.rst b/conditionals/script.rst
index c59f1f8..156102b 100644
--- a/conditionals/script.rst
+++ b/conditionals/script.rst
@@ -126,10 +126,19 @@ is no else block.
Following is an exercise that you must do.
-%% %%
+%% %% Given a number, num. Write an if else block to print num, as is,
+ if it is divisible by 10, else print 10 * num.
Please, pause the video here. Do the exercise and then continue.
+::
+
+ if num%10 == 0:
+ print num
+ else:
+ print 10*num
+
+
In addition to these conditional statements, Python provides a very
convenient ternary conditional operator. Let us take the following
example where we read the marks data from a data file which is
@@ -155,10 +164,15 @@ absent for the exam 0.
Following is an exercise that you must do.
-%% %%
+%% %% Given a number, num. Write a ternary operator to print num, as is,
+ if it is divisible by 10, else print 10 * num.
Please, pause the video here. Do the exercise and then continue.
+::
+
+ print num if num%10 == 0 else 10*num
+
Moving on, there are certain situations where we will have no
operations or statements within a block of code. For example, we have
a code where we are waiting for the keyboard input. If the user enters
diff --git a/conditionals/slides.org b/conditionals/slides.org
index 084fa83..0f17b45 100644
--- a/conditionals/slides.org
+++ b/conditionals/slides.org
@@ -30,12 +30,20 @@
#+OPTIONS: TeX:t LaTeX:nil skip:nil d:nil todo:nil pri:nil tags:not-in-toc
* Outline
+ In this tutorial, we shall look at
+ + Using if/else blocks
+ + Using if/elif/else blocks
+ + Using the Ternary conditional statement
* Question 1
-
+ Given a number, num. Write an if else block to print num, as is, if
+ it is divisible by 10, else print 10 * num.
* Solution 1
#+begin_src python
-
+ if num%10 == 0:
+ print num
+ else:
+ print 10*num
#+end_src
* ~if/elif~ ladder
@@ -47,8 +55,21 @@
elif user == 'client':
# Do customer operations
#+end_src
-
+* Question 2
+ Given a number, num. Write a ternary operator to print num, as is,
+ if it is divisible by 10, else print 10 * num.
+* Solution 2
+ #+begin_src python
+ print num if num%10 == 0 else 10*num
+ #+end_src
* Summary
+ In this tutorial session we learnt
+
+ + What are conditional statements
+ + if/else statement
+ + if/elif/else statement
+ + Ternary conditional statement - ~C if X else Y~
+ + and the ~pass~ statement
* Thank you!
#+begin_latex
diff --git a/conditionals/slides.tex b/conditionals/slides.tex
index df1462c..6991f39 100644
--- a/conditionals/slides.tex
+++ b/conditionals/slides.tex
@@ -1,95 +1,123 @@
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%Tutorial slides on Python.
-%
-% Author: FOSSEE
-% Copyright (c) 2009, FOSSEE, IIT Bombay
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-\documentclass[14pt,compress]{beamer}
-%\documentclass[draft]{beamer}
-%\documentclass[compress,handout]{beamer}
-%\usepackage{pgfpages}
-%\pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm]
-
-% Modified from: generic-ornate-15min-45min.de.tex
-\mode<presentation>
-{
- \usetheme{Warsaw}
- \useoutertheme{infolines}
- \setbeamercovered{transparent}
-}
-
-\usepackage[english]{babel}
+% Created 2010-11-10 Wed 13:25
+\documentclass[presentation]{beamer}
\usepackage[latin1]{inputenc}
-%\usepackage{times}
\usepackage[T1]{fontenc}
-
-\usepackage{ae,aecompl}
-\usepackage{mathpazo,courier,euler}
-\usepackage[scaled=.95]{helvet}
-
-\definecolor{darkgreen}{rgb}{0,0.5,0}
-
+\usepackage{fixltx2e}
+\usepackage{graphicx}
+\usepackage{longtable}
+\usepackage{float}
+\usepackage{wrapfig}
+\usepackage{soul}
+\usepackage{textcomp}
+\usepackage{marvosym}
+\usepackage{wasysym}
+\usepackage{latexsym}
+\usepackage{amssymb}
+\usepackage{hyperref}
+\tolerance=1000
+\usepackage[english]{babel} \usepackage{ae,aecompl}
+\usepackage{mathpazo,courier,euler} \usepackage[scaled=.95]{helvet}
\usepackage{listings}
-\lstset{language=Python,
- basicstyle=\ttfamily\bfseries,
- commentstyle=\color{red}\itshape,
- stringstyle=\color{darkgreen},
- showstringspaces=false,
- keywordstyle=\color{blue}\bfseries}
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% Macros
-\setbeamercolor{emphbar}{bg=blue!20, fg=black}
-\newcommand{\emphbar}[1]
-{\begin{beamercolorbox}[rounded=true]{emphbar}
- {#1}
- \end{beamercolorbox}
-}
-\newcounter{time}
-\setcounter{time}{0}
-\newcommand{\inctime}[1]{\addtocounter{time}{#1}{\tiny \thetime\ m}}
-
-\newcommand{\typ}[1]{\lstinline{#1}}
-
-\newcommand{\kwrd}[1]{ \texttt{\textbf{\color{blue}{#1}}} }
-
-% Title page
-\title{Your Title Here}
-
-\author[FOSSEE] {FOSSEE}
-
-\institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay}
+\lstset{language=Python, basicstyle=\ttfamily\bfseries,
+commentstyle=\color{red}\itshape, stringstyle=\color{darkgreen},
+showstringspaces=false, keywordstyle=\color{blue}\bfseries}
+\providecommand{\alert}[1]{\textbf{#1}}
+
+\title{Conditionals}
+\author{FOSSEE}
\date{}
-% DOCUMENT STARTS
+\usetheme{Warsaw}\usecolortheme{default}\useoutertheme{infolines}\setbeamercovered{transparent}
\begin{document}
+\maketitle
+
+
+
+
+
+
+
+
+
\begin{frame}
- \maketitle
+\frametitle{Outline}
+\label{sec-1}
+
+ In this tutorial, we shall look at
+\begin{itemize}
+\item Using if/else blocks
+\item Using if/elif/else blocks
+\item Using the Ternary conditional statement
+\end{itemize}
\end{frame}
+\begin{frame}
+\frametitle{Question 1}
+\label{sec-2}
+ Given a number, num. Write an if else block to print num, as is, if
+ it is divisible by 10, else print 10 * num.
+\end{frame}
\begin{frame}[fragile]
- \frametitle{Outline}
- \begin{itemize}
- \item
- \end{itemize}
+\frametitle{Solution 1}
+\label{sec-3}
+
+\lstset{language=Python}
+\begin{lstlisting}
+if num%10 == 0:
+ print num
+else:
+ print 10*num
+\end{lstlisting}
\end{frame}
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%% All other slides here. %%
-%% The same slides will be used in a classroom setting. %%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
\begin{frame}[fragile]
- \frametitle{Summary}
- \begin{itemize}
- \item
- \end{itemize}
+\frametitle{\texttt{if/elif} ladder}
+\label{sec-4}
+
+\lstset{language=Python}
+\begin{lstlisting}
+if user == 'admin':
+ # Do admin operations
+elif user == 'moderator':
+ # Do moderator operations
+elif user == 'client':
+ # Do customer operations
+\end{lstlisting}
+\end{frame}
+\begin{frame}
+\frametitle{Question 2}
+\label{sec-5}
+
+ Given a number, num. Write a ternary operator to print num, as is,
+ if it is divisible by 10, else print 10 * num.
\end{frame}
+\begin{frame}[fragile]
+\frametitle{Solution 2}
+\label{sec-6}
+\lstset{language=Python}
+\begin{lstlisting}
+print num if num%10 == 0 else 10*num
+\end{lstlisting}
+\end{frame}
\begin{frame}
- \frametitle{Thank you!}
+\frametitle{Summary}
+\label{sec-7}
+
+ In this tutorial session we learnt
+
+\begin{itemize}
+\item What are conditional statements
+\item if/else statement
+\item if/elif/else statement
+\item Ternary conditional statement - \texttt{C if X else Y}
+\item and the \texttt{pass} statement
+\end{itemize}
+\end{frame}
+\begin{frame}
+\frametitle{Thank you!}
+\label{sec-8}
+
\begin{block}{}
\begin{center}
This spoken tutorial has been produced by the