mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
13 lines
228 B
Python
13 lines
228 B
Python
# First test to run mathgenerator
|
|
# 19 Oct 2020
|
|
|
|
from mathgenerator import mathgen
|
|
|
|
problem, solution = mathgen.addition()
|
|
print(problem)
|
|
print(solution)
|
|
|
|
problem, solution = mathgen.binarytohex()
|
|
print(problem)
|
|
print(solution)
|