- Code: Select all
nom
telephone
date de naissance
mail
et je dois faire un programme qui est capable d'ajouter par exemple une 2eme adresse mail a un contact mais je n'arrive pas a le faire ; voila mon code:
- Code: Select all
#!/usr/bin/python3
#coding : utf-8
import time
def rechercheTel(fpath,s):
tel = ""
mail = ""
anniv = ""
f = open(fpath, 'r')
i = 0
while 1:
line = f.readline()
line = line.strip()
i += 1
if line:
print("%d lignes lues"%i,end='\r')
time.sleep(0.1)
#print(len(line))
else:
break
if line==s:
o = input("telephone")
tel = f.readline()
doc = list()
doc.append(tel)
doc.append(o)
print(doc)
break
f.close()
if len(tel)!=0:
return(tel)
else:
return("Inconnu")
def ecrireTel(fpath,s):
f = open(repertoire.txt, 'a')
f.write(o)
f.close()
s = input("Nom recherché?")
print("Résultat de la recherche :"+rechercheTel('repertoire.txt',s))