INTEGRATION de BIBLIOTHEQUES DANS EDUPYTHON
... EN COURS DE PRÉPARATION :
MAQUETTES ET PROGRAMMES PÉDAGOGIQUES
appliqués aux spécialités en CAP, BAC PRO et BTS
INFO: PROGRAMMATION DE CARTE ELECTRONIQUE
Distributeur →https://www.kubii.fr/
Cliquez ici → Test sur carte Micro:Bit BBC Go
Collaborateur: Elias BERRABAH, mon premier ollaborateur et enseignant en soutien scolaire pour mon fils Geoffroy MATHIEU (2014: Champion de France junior de natation et sélectionné au Jeux Olympiques de la Jeunesse en CHINE) à GeoPROF Clermont www.geoprof.fr fondée le 10 septembre 2012. Elias était alors étudiant en Licence 2 (L2) de Mathématiques à la Faculté des Sciences Mathématiques de Clermont-Ferrand et depuis 2017,Professeur agrégé de Mathématiques en poste en lycée public.
Programme en Python "Etoile scintillante" sous Microbit en Python
from microbit import *
import random
while True:
colonne = random.randint(0,4)
ligne = random.randint(0,4)
intensite = random.randint(0,9)
display.set_pixel(colonne,ligne,intensite)