Les coffres-forts Sécure-IT
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Choix de la combinaison
Le coffre-fort serait un peu trop facile à ouvrir si la combinaison n'était qu'un chiffre de 0 à 9. Il faudrait complexifier les choses.
Faites en sorte que la combinaison du coffre soit un nombre entre 100 et 999.
1
2
3
4
5
6
7
from random import randint
combinaison = randint(0, 9) # la combinaison est un nombre entre 0 et 9.
# Affichage de la combinaison
print("La combinaison est : ", combinaison)
Enter to Rename, Shift+Enter to Preview
Suggested playgrounds
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content