Delete DecimalToHexFunc.py

This commit is contained in:
Luke Weiler
2020-10-21 14:08:32 -04:00
committed by GitHub
parent 85286449a5
commit 9c8ee7ee64

View File

@@ -1,11 +0,0 @@
from .__init__ import *
def DecimalToHexFunc(max_dec=99):
a = random.randint(1, max_dec)
b = hex(a).replace("0x", "")
problem = "Hexadecimal of " + str(a) + "="
solution = str(b)
return problem, solution