diff --git a/TP8/tp8.py b/TP8/tp8.py new file mode 100644 index 0000000000000000000000000000000000000000..68a8a635c600ca32ff999b1e7f97e4e990b937f1 --- /dev/null +++ b/TP8/tp8.py @@ -0,0 +1,16 @@ +import random +import matplotlib.pyplot as plt + +def liste_alea(n): + """à_remplacer_par_ce_que_fait_la_fonction + + Précondition : + Exemple(s) : + $$$ + + """ + + entiers = list(range(n)) + random.shuffle(entiers) + return entiers +