+ 4
Guys what's the math module function for square root? I'm confused cuz I forgot the name
From sb5k
4 odpowiedzi
+ 4
Have you tried to google for 'square root python'?
+ 3
In math module function is sqrt for square root
syntax:-
import math
print (math.sqrt(81))
+ 3
So guys waiting for Ur answwrs
+ 2
from math import sqrt
print(sqrt(25))
Or
from math import sqrt as root
print(root(25))