Delete DegreeToRadian.py

This commit is contained in:
Luke Weiler
2020-10-21 14:08:25 -04:00
committed by GitHub
parent 090afdd451
commit 85286449a5

View File

@@ -1,10 +0,0 @@
from .__init__ import *
def DegreeToRadian(maxAngle=360):
angle = random.randint(1, maxAngle)
radian = round(math.radians(angle), 2)
problem = f"{angle} Degrees is equal to Radian = "
solution = radian
return problem, solution