Delete DecimalToOctalFunc.py

This commit is contained in:
Luke Weiler
2020-10-21 14:08:40 -04:00
committed by GitHub
parent 9c8ee7ee64
commit 29b2a6467d

View File

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