scripts python

This commit is contained in:
root 2022-09-28 17:24:40 +02:00
parent d04439cb70
commit ba69fb4a2c
4 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,2 @@
#!/usr/bin/python3
print ("bonjour");

15
sio1/sisr1/70-python/phrase.py Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/python3
phrase = str(input("Entrez une phrase à analyser : "));
tabmots = phrase.split(' ');
cptmots = {}
for mot in tabmots:
if mot not in cptmots:
cptmots[mot]=1
else:
cptmots[mot] = cptmots[mot] + 1
for mot in cptmots:
print(mot, ":", cptmots[mot])

4
sio1/sisr1/70-python/rayon.py Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/python3
rayon=float(input("Entrez le rayon du cercle en cm : "));
perimetre=float(2*rayon*3.141592);
print("le perimètre du cercle est :", perimetre, "cm");

38
sio1/sisr1/70-python/tableau.py Executable file
View File

@ -0,0 +1,38 @@
#!/usr/bin/python3
min=int(0);
max=int(0);
i=int(0);
tableau=[];
moyenne=float(0);
nombre=int(input("Entrez un nombre entier : "));
min=nombre;
if nombre>max:
max=nombre;
tableau.append(nombre);
for i in range(0,4):
nombre=int(input("Entrez un nombre entier : "));
if nombre<min:
min=nombre;
if max<nombre:
max=nombre;
tableau.append(nombre);
for i in range(0,5):
moyenne+=float(tableau[i]);
moyenne=float(moyenne/len(tableau));
for i in range(0,5):
print(tableau[i]);
print("\nLe plus petit nombre est : ", min);
print("Le nombre le plus grand est : ", max);
print("La moyenne est de :", moyenne);