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.
Bertrand Benjamin 1346ba426a Feat: ajout de grand_carre 2 years ago
NSI_Bertrand Feat: ajout de grand_carre 2 years ago
.gitignore Initial commit 3 years ago
LICENSE Initial commit 3 years ago
README.md Feat: import blackjack and push v0.4.1 2 years ago
setup.py Feat: ajout de grand_carre 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: []>