2022-2023/2nd/01_Proportion_et_fractions/bopytex_config.py
Bertrand Benjamin 15c6dac685
All checks were successful
continuous-integration/drone/push Build is passing
Feat: ajoute les exercices techniques pour les calculs de fractions
2022-09-01 18:17:22 +02:00

13 lines
297 B
Python

# bopytex_config.py
from mapytex.calculus.random import expression as random_expression
from mapytex import render
import random
random.seed(0) # Controlling the seed allows to make subject reproductible
render.set_render("tex")
direct_access = {
"random_expression": random_expression,
}