Files
mathgenerator/mathgenerator/funcs/binaryToHexFunc.py
2020-10-18 23:48:13 -04:00

12 lines
256 B
Python

from .__init__ import *
def binaryToHexFunc(max_dig=10):
problem = ''
for i in range(random.randint(1, max_dig)):
temp = str(random.randint(0, 1))
problem += temp
solution = hex(int(problem, 2))
return problem, solution