-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
856c2c1
commit fc4221a
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jupyter: | |
Cours 6 : TD récapitulatif | ||
========================== | ||
|
||
**Loïc Grobol** [<[email protected]>](mailto:[email protected]) | ||
**L. Grobol** [<[email protected]>](mailto:[email protected]) | ||
|
||
<!-- #endregion --> | ||
|
||
|
@@ -97,7 +97,7 @@ print("Une autre ligne") | |
1\. Écrire dans la cellule ci-dessous un programme qui affiche votre nom complet, comme ceci : | ||
|
||
```text | ||
Loïc Grobol | ||
Morgan Menis | ||
``` | ||
|
||
```python | ||
|
@@ -355,7 +355,7 @@ résultat. | |
> d'affectation `=` | ||
```python | ||
nom = "Loïc" | ||
nom = "Morgan" | ||
``` | ||
|
||
> une variable peut être utilisée partout où on peut utiliser une valeur littérale : | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jupyter: | |
Cours 6 : Corrections | ||
===================== | ||
|
||
**Loïc Grobol** [<[email protected]>](mailto:[email protected]) | ||
**L. Grobol** [<[email protected]>](mailto:[email protected]) | ||
|
||
<!-- #endregion --> | ||
|
||
|
@@ -29,11 +29,11 @@ Cours 6 : Corrections | |
> 1\. Écrire dans la cellule ci-dessous un programme qui affiche votre nom complet, comme ceci : | ||
> | ||
> ```text | ||
> Loïc Grobol | ||
> Morgan Menis | ||
> ``` | ||
```python | ||
print("Loïc Grobol") | ||
print("Morgan Menis") | ||
``` | ||
> 2\. Écrire dans la cellule ci-dessous un programme qui affiche votre année et votre lieu de | ||
|