herons rule python

Solutions on MaxInterview for herons rule python by the best coders in the world

showing results for - "herons rule python"
Anastasia
08 Jul 2019
1import math
2a = 3
3b = 4
4c = 5
5s = (3 + 4 + 5)/2
6F = math.sqrt(s*(s-a)*(s-b)*(s-c))
7print(f"the area is {F}")
8
similar questions
queries leading to this page
herons rule python