Skip to content

Commit eee1195

Browse files
Merge pull request #1778 from sayampradhan/patch-67
Format Document
2 parents 8e69deb + 5eb267e commit eee1195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AreaOfTriangle.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
s = (a + b + c) / 2
1414

1515
# calculate the area
16-
area = (s*(s-a)*(s-b)*(s-c)) ** 0.5
17-
print('The area of the triangle is: ' + area)
16+
area = (s * (s - a) * (s - b) * (s - c)) ** 0.5
17+
print("The area of the triangle is: " + area)

0 commit comments

Comments
 (0)