nouveau fichier : sio2/sisr/20-python/exo2-1.py.old
nouveau fichier : sio2/sisr/20-python/exo2-2.py.old nouveau fichier : sio2/sisr/20-python/exo2.py nouveau fichier : sio2/sisr/20-python/exo3.py
This commit is contained in:
parent
d38ba48387
commit
d59aa1571c
34
sio2/sisr/20-python/exo2-1.py.old
Normal file
34
sio2/sisr/20-python/exo2-1.py.old
Normal file
@ -0,0 +1,34 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
# Initialiser un tableau vide
|
||||
tableau = []
|
||||
|
||||
# Saisir 5 chiffres
|
||||
for i in range(5):
|
||||
chiffre = float(input(f"Entrez le chiffre {i+1} : "))
|
||||
tableau.append(chiffre)
|
||||
|
||||
# Trouver plus petit élément
|
||||
plus_petit = tableau[0]
|
||||
for chiffre in tableau:
|
||||
if chiffre < plus_petit:
|
||||
plus_petit = chiffre
|
||||
|
||||
# Trouver le plus grand élément
|
||||
plus_grand = tableau[0]
|
||||
for chiffre in tableau:
|
||||
if chiffre > plus_grand:
|
||||
plus_grand = chiffre
|
||||
|
||||
# Calculer la moyenne
|
||||
moyenne = sum(tableau) / len(tableau)
|
||||
|
||||
# Afficher le tableau
|
||||
print("Le tableau est :")
|
||||
for chiffre in tableau:
|
||||
print(chiffre)
|
||||
|
||||
# Afficher les résultats
|
||||
print(f"Le plus petit élément est : {plus_petit}")
|
||||
print(f"Le plus grand élément est : {plus_grand}")
|
||||
print(f"La moyenne est : {moyenne}")
|
34
sio2/sisr/20-python/exo2-2.py.old
Normal file
34
sio2/sisr/20-python/exo2-2.py.old
Normal file
@ -0,0 +1,34 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
# Etape 1 : Demande à l’utilisateur de saisir 5 chiffres.
|
||||
# Etape 2 : Calcule le plus petit et le plus grand élément du tableau.
|
||||
# Etape 3 : Calcule la moyenne des éléments du tableau.
|
||||
# Etape 4 : Affiche le tableau et les résultats.
|
||||
|
||||
# Initialiser un tableau vide
|
||||
tableau = []
|
||||
|
||||
# Saisir 5 chiffres en utilisant une boucle
|
||||
for i in range(5):
|
||||
chiffre = float(input(f"Entrez le chiffre {i+1} : "))
|
||||
tableau.append(chiffre)
|
||||
|
||||
# Calculer le plus petit élément
|
||||
plus_petit = min(tableau)
|
||||
|
||||
# Calculer le plus grand élément
|
||||
plus_grand = max(tableau)
|
||||
|
||||
# Calculer la moyenne
|
||||
moyenne = sum(tableau) / len(tableau)
|
||||
|
||||
# Afficher le tableau
|
||||
print("Le tableau est :")
|
||||
for chiffre in tableau:
|
||||
print(chiffre)
|
||||
|
||||
# Afficher les résultats
|
||||
print(f"Le plus petit élément est : {plus_petit}")
|
||||
print(f"Le plus grand élément est : {plus_grand}")
|
||||
print(f"La moyenne est : {moyenne}")
|
||||
|
1
sio2/sisr/20-python/exo2.py
Normal file
1
sio2/sisr/20-python/exo2.py
Normal file
@ -0,0 +1 @@
|
||||
#!
|
27
sio2/sisr/20-python/exo3.py
Normal file
27
sio2/sisr/20-python/exo3.py
Normal file
@ -0,0 +1,27 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
# Etape 1 : Demande à l’utilisateur de saisir une phrase.
|
||||
# Etape 2 : Divise la phrase en mots.
|
||||
# Etape 3 : Utilise un dictionnaire pour compter les occurrences de chaque mot.
|
||||
# Etape 4 : Affiche chaque mot avec son nombre d’occurrences.
|
||||
|
||||
# Demander à l'utilisateur de saisir une phrase
|
||||
phrase = input("Entrez une phrase : ")
|
||||
|
||||
# Convertir la phrase en une liste de mots
|
||||
mots = phrase.split()
|
||||
|
||||
# Créer un dictionnaire pour stocker les occurrences des mots
|
||||
occurrences = {}
|
||||
|
||||
# Compter les occurrences de chaque mot
|
||||
for mot in mots:
|
||||
if mot in occurrences:
|
||||
occurrences[mot] += 1
|
||||
else:
|
||||
occurrences[mot] = 1
|
||||
|
||||
# Afficher les mots et leurs occurrences
|
||||
print("Occurrences des mots :")
|
||||
for mot, count in occurrences.items():
|
||||
print(f"{mot} : {count}")
|
Loading…
x
Reference in New Issue
Block a user