how to make a square with 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
#use the ** operator
3 ** 2