renamed files and exercise 1.2

This commit is contained in:
Tutur33
2023-11-28 22:39:24 +01:00
parent f39c57c778
commit 24dbf6099f
26 changed files with 19 additions and 6 deletions
@@ -0,0 +1,12 @@
identifiants = {
"ale.lecouturier":"Huz4",
"lea.martin":"monty"
}
identifiant = input("Identifiant : ")
motdepasse = input("Mot de passe : ")
if identifiant in identifiants and motdepasse == identifiants[identifiant]:
print(True)
else:
print(False)