Added function binarytoHex()

This commit is contained in:
William Welch
2020-10-18 18:28:30 -05:00
parent 4331db74d0
commit 26c43e9f16
2 changed files with 23 additions and 0 deletions

12
driver.py Normal file
View File

@@ -0,0 +1,12 @@
# 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)