# Exercice 1
``` python=
for i in range(2,21,2)
print(i)
```
# Exercice 2
``` python=
n=0
while n == 20
n = n+1
print(n)
```
# Exercice 3
``` python=
n=20
for i in range(0,20):
n=n-2
print(n)
```
# Exercice 4
``` python=
a=10
b=3
r=0
while b !=0:
r = a % b
a=b
b=r
print (a)
```
# Exercice 5
Maths : permet d’accéder aux fonctions mathématiques définies par la norme C
Random : nombre alétoire
Sys : donne accès aux variables et aux fonctions qui interagissent fortement avec l’interpréteur.
Os : fournit une façon portable d’utiliser les fonctionnalités dépendantes du système d’exploitation
SciPy : calcul scientifique