How to get Square root of a number without import anything in python? You know we can do this:
import math
a = 4
s = math.sqrt(a)
but i want do this more simple without import any library.
How to get Square root of a number without import anything in python? You know we can do this:
import math
a = 4
s = math.sqrt(a)
but i want do this more simple without import any library.
Copyright © 2021 Jogjafile Inc.
You can do this using Exponentiation in python line this: