write python expression for mathematical expression ✓a^2+b^2+c^2
Answers
Answered by
0
Answer:
(a**2 + b**2 +c**2)**0.5
Or
import math
math.sqrt(a**2 + b**2 +c**2)
Explanation:
Let's take a = 2, b = 2 , c = 1;
now put the values in equation
=> (2**2 + 2**2 + 1**2)**0.5
=> (4 + 4 + 1)**0.5
=>9**0.5
=>3
Answered by
1
Similar questions