savoir définir ...
- Les variables :- de type numérique
- de type flottante
- de type booléenne
 
- La notion de liste ...
- Une fonction :
Nom_fonction(argument1,…)
 Instructions
- Une instruction conditionnelle :
if Conditions 1:
 Instructions1
 elif Conditions 2:
 Instructions2
 else:
 Instructions3
- Une Boucle Pour :
for i in range(n):
 Instructions
- Une Boucle Tant Que :
While Conditions:
 Instructions
- Une liste :
L=[var1,var2,…]
Algorithmes
