This commit is contained in:
2022-12-28 09:00:47 +01:00
commit 9d755dc551
19 changed files with 201 additions and 0 deletions

10
tempalert.py Normal file
View File

@@ -0,0 +1,10 @@
nbMesures = int(input())
tempMin = int(input())
tempMax = int(input())
temp = int(input())
while temp <= tempMax and temp >= tempMin:
print("Rien à signaler")
temp = int(input())
print("Alerte !!")