Update area_of_triangle.py

This commit is contained in:
Luke Weiler
2020-12-29 14:51:27 -05:00
committed by GitHub
parent 609d65cba9
commit 1b63f19642

View File

@@ -11,7 +11,7 @@ def areaOfTriangleFunc(maxA=20, maxB=20, maxC=20):
problem = "Area of triangle with side lengths: " + \ problem = "Area of triangle with side lengths: " + \
str(a) + " " + str(b) + " " + str(c) + " = " str(a) + " " + str(b) + " " + str(c) + " = "
solution = area solution = str(area)
return problem, solution return problem, solution