From 4850b95120684509f052f39c69f9354e9809c844 Mon Sep 17 00:00:00 2001 From: Johan Largy Date: Thu, 29 Sep 2022 08:55:42 +0200 Subject: [PATCH] script python --- sio2/sisr2/30-Python/Exo2 | 23 +++++++++++++++++++++++ sio2/sisr2/30-Python/Exo3 | 17 +++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 sio2/sisr2/30-Python/Exo2 create mode 100644 sio2/sisr2/30-Python/Exo3 diff --git a/sio2/sisr2/30-Python/Exo2 b/sio2/sisr2/30-Python/Exo2 new file mode 100644 index 0000000..ea71e42 --- /dev/null +++ b/sio2/sisr2/30-Python/Exo2 @@ -0,0 +1,23 @@ +#!/usr/bin/python3 +moyenne=0 +Tableau=[] +#boucle for +for i in range(5): + valeur = input("Donner un nombre: ") + Tableau.append(valeur) + +#plus petite élément et plus grand +max=Tableau[0] +min=Tableau[0] +for valeur in Tableau: + if valeur > max: + max = valeur + if valeur