We will ask the user to enter the three edges of the triangle. We will label these edges as e1, e2, and e3.
In Python, we can do this using the input function:
\[
\begin{{align*}}
\text{{e1 = float(input("Enter edge 1: "))}} \\
\text{{e2 = float(input("Enter
Show more…