forked from geekcomputers/Python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAreaOfTriangle.py
More file actions
Latest commit
17 lines (13 loc) · 444 Bytes
/
Copy pathAreaOfTriangle.py
File metadata and controls
17 lines (13 loc) · 444 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Python Program to find the area of triangle when all three side-lengths are known!
a=5
b=6
c=7
# Uncomment below to take inputs from the user
# a = float(input('Enter first side: '))
# b = float(input('Enter second side: '))
# c = float(input('Enter third side: '))
# calculate the semi-perimeter
s= (a+b+c) /2
# calculate the area
area= (s* (s-a) * (s-b) * (s-c)) **0.5
print("The area of the triangle is: "+area)