Computer Science, asked by prashantnaik2599, 3 months ago

Write the equivalent python expression for the following expressions.

√a2+b2+c2​

Answers

Answered by Oreki
0

\textsf{\large \textbf{Given Expression}}

   \sqrt{a^2 + b^2 + c^2}

\textsf{\large \textbf{Python Expression}}

   \texttt{from math import sqrt}\\\texttt{sqrt(a * a  + b * b + c * c)}

Similar questions