We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8e69deb + 5eb267e commit eee1195Copy full SHA for eee1195
AreaOfTriangle.py
@@ -13,5 +13,5 @@
13
s = (a + b + c) / 2
14
15
# calculate the area
16
-area = (s*(s-a)*(s-b)*(s-c)) ** 0.5
17
-print('The area of the triangle is: ' + area)
+area = (s * (s - a) * (s - b) * (s - c)) ** 0.5
+print("The area of the triangle is: " + area)
0 commit comments