siotp/sio2/SISR/07-python/boucle.py
root b26199fa82 nouveau fichier : boucle.py
nouveau fichier : comptage_mot.py
2024-10-03 11:17:30 +02:00

26 lines
569 B
Python

#!/usr/bin/python3
tab=[]
for i in range(5):
chiffre=int(input("Veuillez saisir votre chiffre No : "))
tab.append(chiffre)
mini=tab[0]
maxi = tab[0]
cumul = 0
for val in tab:
if val < mini:
mini=val
print("Le plus petit element du tableau est : " , mini)
if val > maxi:
maxi=val
print("Le plus grand element du tableau est : " , maxi)
cumul += val
moy = cumul / len(tab)
print("La moyenne des valeurs du tableau est de : " , moy)
#affichage du tableau
print ("Voici tous les elements du tableau : ")
for element in tab:
print(element)