Advertisement
aneliabogeva

Calculate Triangle Area

Jun 14th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. def calculating_Tringle_are(base, height):
  2. calculation = (base * height)/2
  3. return calculation
  4.  
  5. print(f"{calculating_Tringle_are(float(input()),float(input())):.12g}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement