|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- % Python Épisode 4
- % Dimitri Merejkowsky
- % E2L
-
- \huge \center Rappels
-
- # print
-
- Afficher quelque chose dans la console:
-
- \vfill
-
- ```python
- print("Bonjour, monde")
- ```
-
- \vfill
-
- *Affiche: Bonjour, monde*
-
- # Commentaires
-
- Les lignes qui commencent par un `#` sont ignorées:
-
- \vfill
-
- ```python
- # Ceci est un commentaire
- print("Bonjour, monde")
- ```
-
- \vfill
-
- *Affiche: Bonjour, monde*
-
- # Maths (1)
-
- * `+`, `*`, `-`, `/`
-
- \vfill
-
- ```python
- print(1 + 2)
- ```
-
- \vfill
-
- *Affiche: 3*
-
- # Maths (2)
-
- Opérations: `//`, `%`
-
-
- ```python
- print(14 // 3)
- print(14 % 3)
- ```
-
- \vfill
-
- *Affiche 4, puis 2*
-
-
- # Instructions et expressions
-
- * Les instructions sont *exécutées*
- * Les expressions sont *évaluées*
-
-
- # Exemple
-
- ```python
- print(1+2)
- ```
-
- \vfill
-
- * Évaluation de l'expression `1+2` (ça fait `3`)
- * Exécution de l'instruction `print`
- * Affiche `3`
-
- # Variables
-
-
- ```python
- a = 2
- b = 3
- c = a + b
- print(c)
- ```
-
- \vfill
-
- * Assigne 2 à la variable `a`
- * Assigne 3 à la variable `b`
- * Assigne le résultat de l'évaluation de `a+b` à c (5)
- * Affiche 5
-
- # Chaînes de caractères (strings)
-
- Avec des `"` ou des `'`
-
- \vfill
-
- ```python
- print("Il a dit: 'bonjour' ce matin.")
- ```
- *Affiche: Il a dit: 'bonjour' ce matin*
-
- \vfill
-
- ```python
- print('Il a dit: "bonjour" ce matin')
- ```
- *Affiche: Il a dit: "bonjour" ce matin*
-
- # Concaténation
-
- Avec `+`
-
- \vfill
-
- ```python
- prénom = "Marie"
- message = "Bonjour " + prénom
- print(message)
- ```
-
- \vfill
-
- *Affiche: Bonjour Marie*
-
- # Conversions (1)
-
- Entier vers string avec `str()`:
-
- \vfill
-
- ```python
- x = 40
- y = 2
- message = "La réponse est: " + str(x + y)
- print(message)
- ```
-
- \vfill
-
- *Affiche: La réponse est 42*
-
- # Conversions (2)
-
-
- String vers entier avec `int()`:
-
- \vfill
-
- ```python
- quarante_en_chiffres = "40"
- réponse = int(quarante_en_chiffres) + 2
- ```
-
- \vfill
-
- *Assigne 42 à la variable `réponse`*.
-
-
- # Opérations booléennes (1)
-
- Renvoient `True` ou `False` après évaluation:
-
- \vfill
-
- +-------+-----------------------------+
- |``==`` | égal |
- +-------+-----------------------------+
- |``!=`` | différent |
- +-------+-----------------------------+
- |``>`` | strictement supérieur |
- +-------+-----------------------------+
- |``>=`` | supérieur ou égal |
- +-------+-----------------------------+
- |``<`` | strictement inférieur |
- +-------+-----------------------------+
- |``<=`` | inférieur ou égal |
- +-------+-----------------------------+
-
- # Exemples
-
-
- ```python
- âge = 14
- peut_conduire = (âge >= 18)
- ```
-
- \vfill
-
- *Assigne* la valeur `False` *à la variable* `peut_conduire`.
-
-
- # Opérations (2)
-
-
- +-------+-----------+
- |``not``| négation |
- +-------+-----------+
- |``and``| et |
- +-------+-----------+
- |``or`` | ou |
- +-------+-----------+
-
- ```python
- il_pleut = True
- j_ai_un_parapluie = False
- je_suis_mouillé = il_pleut and not j_ai_un_parapluie
- ```
-
- \vfill
-
- *Assigne la valeur* `True` *à la variable* `je_suis_mouillé`.
-
- #
-
- \center \huge Contrôle de flux
-
- # Contrôle de flux
-
- * Modifier l'ordre d'exécution des instructions.
- * Utiliser des blocs:
- * `:`, retour à la ligne, indentation
-
-
- # if / else
-
-
- ```python
- a = 3
- b = 4
- if a == b:
- print("a et b sont égaux")
- else:
- print("a et b sont différents")
- ```
-
- \vfill
-
- * Assigne `3` à la variable `a`
- * Assigne `4` à la variable `b`
- * Évalue l'expression `a == b`. (`False`)
- * Saute l'exécution du bloc après le `if`
- * Exécute le bloc après le `else`
- * Affiche *a et b sont différents*
-
-
- # while
-
- Évalue le bloc tant que l'expression après le `while` renvoie
- `True`:
-
- ```python
- i = 0
- while i < 3:
- print(i)
- i = i + 1
- ```
-
- \vfill
-
- *Affiche 0, puis 1, puis 2*
-
- # while, if, et break
-
- Interrompre une boucle avec `break`:
-
- ```python
- i = 0
- while True:
- i = i + 1
- print(i)
- if i > 3:
- break
- ```
-
- \vfill
-
- *Affiche 1, puis 2, puis 3, puis 4*
|