You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
NSI_Bertrand | 2 years ago | |
.gitignore | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 2 years ago | |
setup.py | 2 years ago |
README.md
Outils pour l'enseignement NSI
Installation
pip install --upgrade Bertrand_NSI
Outils
Fonctions de tri
>>> from Bertrand_NSI.tri import tri
>>> tri.bulles([1, 23, 2, 4, 15])
[1, 2, 4, 15, 23]
Blackjack
Correction du jeu de blackjack pour l'aide aux élèves.
>>> from Bertrand_NSI.blackjack import Player
>>> p = Player(1)
>>> print(p)
<Player 1: []>