Python V1
This commit is contained in:
parent
7a35ccf29e
commit
72aba346b9
23
Sio2/SISR/30-python/creatusr.py
Executable file
23
Sio2/SISR/30-python/creatusr.py
Executable file
@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import sys
|
||||
|
||||
try:
|
||||
user = open("user.txt", "r")
|
||||
except:
|
||||
print ("Fichier utilisateur inconnu")
|
||||
else:
|
||||
line = user.readline ()
|
||||
maligne = line.rstrip()
|
||||
# print (line)
|
||||
|
||||
while maligne:
|
||||
(login, complet) = maligne.split(":")
|
||||
print (login)
|
||||
print (complet)
|
||||
line = user.readline()
|
||||
maligne = line.rstrip()
|
||||
#print (line)
|
||||
|
||||
user.close()
|
||||
|
2
Sio2/SISR/30-python/prog.py
Executable file
2
Sio2/SISR/30-python/prog.py
Executable file
@ -0,0 +1,2 @@
|
||||
#!/usr/bin/python3
|
||||
print ("Bonjour.")
|
4
Sio2/SISR/30-python/prog1.py
Executable file
4
Sio2/SISR/30-python/prog1.py
Executable file
@ -0,0 +1,4 @@
|
||||
#!/usr/bin/python3
|
||||
rayon=float(input("Saisir le rayon : "))
|
||||
peri=(2*3.141592*rayon)
|
||||
print ("Le périmètre vaut : ", peri, "cm")
|
30
Sio2/SISR/30-python/prog2.py
Executable file
30
Sio2/SISR/30-python/prog2.py
Executable file
@ -0,0 +1,30 @@
|
||||
#!/usr/bin/python3
|
||||
tableau=[]
|
||||
nb=int(input("Combien de nombre dans le tableau : "))
|
||||
|
||||
for i in range (nb):
|
||||
valeur=int(input("Saisir un nombre : "))
|
||||
tableau.append(valeur)
|
||||
|
||||
min = tableau[0]
|
||||
max = tableau[0]
|
||||
moy = 0
|
||||
for valeur in tableau:
|
||||
if valeur < min:
|
||||
min = valeur
|
||||
|
||||
if valeur > max:
|
||||
max = valeur
|
||||
|
||||
moy = moy + valeur
|
||||
|
||||
moy = moy/nb
|
||||
|
||||
for valeur in tableau:
|
||||
print (valeur)
|
||||
|
||||
|
||||
print ("La moyenne est : ", moy)
|
||||
print ("Le plus petit élément est : ", min)
|
||||
print ("Le plus grand élément est : ", max)
|
||||
|
14
Sio2/SISR/30-python/prog3.py
Executable file
14
Sio2/SISR/30-python/prog3.py
Executable file
@ -0,0 +1,14 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
phrase = str(input("Entrez votre phrase : "))
|
||||
tabmots = phrase.split(" ")
|
||||
cptmots = {}
|
||||
|
||||
for mot in tabmots:
|
||||
if not mot in cptmots:
|
||||
cptmots[mot] = 1
|
||||
else:
|
||||
cptmots[mot] = cptmots[mot] + 1
|
||||
|
||||
for mot in cptmots.keys():
|
||||
print(mot, ":", cptmots[mot])
|
Loading…
x
Reference in New Issue
Block a user