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.
Bienvenue!
La compagnie de coffres-forts «Sécur-IT» vous a engagé pour programmer l'interface utilisateur de leur tout dernier modèle, le «Coffre-Trop-Fort».
Ce coffre-fort très spécial est capable de choisir sa propre combinaison secrète au hasard. Cliquez sur «Run» pour démarrer le programme et voir la combinaison choisie.
1
2
3
4
5
6
7
8
from random import randint
# la combinaison est un nombre choisi aléatoirement entre 0 et 9.
combinaison = randint(0, 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