complete restructure of the project. minor tweaks

This commit is contained in:
D-T-666
2020-10-18 19:03:56 +04:00
parent 4331db74d0
commit 3c1b02787f
65 changed files with 1145 additions and 900 deletions

View File

@@ -0,0 +1,14 @@
from .__init__ import *
def fourthAngleOfQuadriFunc(maxAngle=180):
angle1 = random.randint(1, maxAngle)
angle2 = random.randint(1, 240 - angle1)
angle3 = random.randint(1, 340 - (angle1 + angle2))
sum_ = angle1 + angle2 + angle3
angle4 = 360 - sum_
problem = f"Fourth angle of quadrilateral with angles {angle1} , {angle2}, {angle3} ="
solution = angle4
return problem, solution