how to square on python code example
Example 1: square root in python
def square_root(num):
return num**0.5
#prints out 4
print(square_root(16))
#prints out 10
print(square_root(100))
Example 2: python square number
## Two ways to square the number x
x ** 2
# Returns: 9
pow(x, 2)
# Returns: 9