Feat: Bilan sur les conditions

This commit is contained in:
Bertrand Benjamin 2022-02-18 10:42:56 +01:00
parent dbb74b63b7
commit 5b7a35fb77
3 changed files with 44 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,39 @@
\documentclass[a4paper,10pt]{article}
\usepackage{myXsim}
\author{Benjamin Bertrand}
\title{Programmation - Cours}
\date{Février 2022}
\pagestyle{empty}
\begin{document}
\maketitle
\setcounter{section}{2}
\section{Conditions \lstinline{if/elif/else}}
Quand on veut gérer différent cas de figure, on utilise les mots clés \lstinline{if/elif/else}.
\begin{center}
\begin{minipage}{0.8\linewidth}
\begin{lstlisting}
age = str(input{Quel age as tu?})
if age < 2: # si
print("Tu es un bébé") # alors
elif age < 18: #sinon si
print("Tu n'es pas majeur") # alors
print("Tu peux passer le permis")
elif age < 50: #sinon si
print("Tu as moins de la moitier d'un siècle") #alors
else: #sinon
print("Plus d'un demi siècle!")
print("J'ai plus rien à dire")\end{lstlisting}
\end{minipage}
\end{center}
\paragraph{Remarque:} Il faut faire attention à l'indentation. C'est elle qui détermine où s'arrête le alors.
\end{document}

View File

@ -77,6 +77,11 @@ Traduction algo en français en programme en python
`Conditions if <./3E_conditions.ipynb>`_
.. image:: ./3B_conditions.pdf
:height: 200px
:alt: Les conditions
Étape 4: Boucle for
-------------------