script python
This commit is contained in:
parent
249b8ed74f
commit
4850b95120
23
sio2/sisr2/30-Python/Exo2
Normal file
23
sio2/sisr2/30-Python/Exo2
Normal file
@ -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<min:
|
||||||
|
min=valeur
|
||||||
|
moyenne=moyenne+int(valeur)
|
||||||
|
|
||||||
|
moyenne=moyenne/5
|
||||||
|
|
||||||
|
for valeur in range(5):
|
||||||
|
print(Tableau[valeur])
|
||||||
|
print("Le plus petit est",min,"le plus grand est",max,"la moyenne est",moyenne)
|
17
sio2/sisr2/30-Python/Exo3
Normal file
17
sio2/sisr2/30-Python/Exo3
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
phrase=str(input("phrase :"))
|
||||||
|
|
||||||
|
#eclatage de la chaine de caractere en tableau avec séparateur espace
|
||||||
|
tabmots= phrase.split(" ")
|
||||||
|
cptmots={}
|
||||||
|
|
||||||
|
for mot in tabmots:
|
||||||
|
if not mot in cptmots:
|
||||||
|
cptmots[mot]=1
|
||||||
|
else:
|
||||||
|
cptmots[mot]=cptmots[mot] +1
|
||||||
|
|
||||||
|
#affichage des occurences
|
||||||
|
for mot in cptmots.keys():
|
||||||
|
print(mot, ":",cptmots[mot])
|
Loading…
x
Reference in New Issue
Block a user