edit et corrections d'erreurs factuelles, de calculs et de mise en page

This commit is contained in:
2026-07-02 15:01:24 +02:00
parent 3067e1918e
commit 28d4a75c1b
32 changed files with 174 additions and 109 deletions

View File

@@ -299,7 +299,7 @@ python arithmetique.py
---
Auteurs : Florian Mathieu, Enzo Frémeaux, Thimothée Decooster
Auteurs : Florian Mathieu, Enzo Frémeaux, Timothée Decoster
Licence CC BY NC

View File

@@ -127,7 +127,7 @@ Néanmoins, la postérité aura attribué ce mot à la développeuse, qui aurait
------
Auteur : Florian Mathieu, Enzo Frémeaux, Thimothée Decooster.
Auteur : Florian Mathieu, Enzo Frémeaux, Timothée Decoster.
Licence CC BY NC

View File

@@ -26,7 +26,7 @@ Intéressons-nous au code Python ci-dessous. Ici, la structure compte plus que l
```python
## importations
from math import *
from math import sqrt
import doctest
## variables
@@ -77,7 +77,7 @@ Intéressons nous au programme vu précédemment :
```python
## importations
from math import *
from math import sqrt
import doctest
```
@@ -169,6 +169,8 @@ def somme(n):
>>> somme(5)
15
>>> somme(-1)
Traceback (most recent call last):
...
AssertionError: erreur
"""
assert type(n)==int, "erreur"
@@ -187,7 +189,7 @@ L'attribut *verbose* de la fonction testmod nous permet de dire à ce dernier de
----------
Auteurs : Florian Mathieu, Enzo Frémeaux, Thimothée Decooster
Auteurs : Florian Mathieu, Enzo Frémeaux, Timothée Decoster
Licence CC BY NC

View File

@@ -562,7 +562,7 @@ def aire_cercle(rayon):
---
Auteurs : Florian Mathieu, Enzo Frémeaux, Thimothée Decooster
Auteurs : Florian Mathieu, Enzo Frémeaux, Timothée Decoster
Licence CC BY NC

View File

@@ -79,7 +79,7 @@ Question 10 - Ajouter la doctest de ces fonctions.
-------
Auteurs : Florian Mathieu, Enzo Frémeaux, Thimothée Decooster
Auteurs : Florian Mathieu, Enzo Frémeaux, Timothée Decoster
Licence CC BY NC