mirror of
https://github.com/arthur-pbty/nsi.git
synced 2026-06-03 23:36:19 +02:00
12 lines
270 B
Python
12 lines
270 B
Python
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) |