-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ex5_Compteur.py
65 lines (41 loc) · 1.74 KB
/
Ex5_Compteur.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import json
import random
import datetime
"""Compteurs=[{"numCompteur":3000,"typeCompteur":"ordinaire","zoneCompteur":"zone1","dateInstallation":"01/02/2020","valeurEnregistré":100,"valeurAnterieur":60,"Suppression":0},
{"numCompteur":3001,"typeCompteur":"ordinaire","zoneCompteur":"zone2","dateInstallation":"01/02/2021","valeurEnregistré":120,"valeurAnterieur":60,"Suppression":0}
];
with open("listCmpt.json","w") as file:
json.dump(Compteurs,file)
print("Bien sérialisé !!!!!!!!")"""
#********************************Question1 : Ajouter****************************
DicoType={0:"ordinaire",1:"industriel"}
def Ajouter(path):
listComp = None
file=open(path,"r")
listComp = json.load(file)
file.close()
c={}
c["numCompteur"]=3000 if len(listComp)==0 else listComp[-1].get("numCompteur")+1
indexType=random.randint(0,1)
c["typeCompteur"]=DicoType.get(indexType)
indexZone = random.randint(1, 20)
c["zoneCompteur"] = "zone{0}".format(indexZone)
while True:
try:
strDate=input("Entrez une date valide (dd/mm/yyyy) : ")
c["dateInstallation"]=datetime.datetime.strptime(strDate,"%d/%m/%Y")
c["dateInstallation"]=datetime.datetime.strftime( c["dateInstallation"],"%d/%m/%Y")
break
except Exception as ex :
print(ex)
print("Format date est invalide (dd/mm/yyyy) !!!")
c["valeurEnregistré"]=0
c["valeurAnterieur"]=0
c["Suppression"]=0
listComp.append(c)
#print(listComp)
file=open(path,"w")
listComp = json.dump(listComp,file)
file.close()
print("Bien ajouté !!!!!!!!")
Ajouter("listCmpt.json")