The AI Reskilling Platform

How to square a number in python

On how to square a number in Python we explore different ways that includes pow(), math.pow, the power operator (**) as we create as well our own function to receive exactly this squared value

The most straight forward way to square a number in Python would be to use the built-in pow (power) method. It will receive two parameters, the number to square and the amount of times to power that number.

square = pow(6, 2)
print(square)
#Output-> 36

There are many ways or reasons to square a number in python: Using function power(), math.pow() and others, here is a more details explanation:

Creating the square function ourselves:

The first method we are presenting is exactly creating a function that will return the squared number of whatever number it receives: if it receives x we will return x * x.

As you should already know, a squared number is the number multiplied by itself.

Let say the square of 2 would be 4 because 2*2=4. If we were to choose 5, we would receive 25 and so on.

Keeping that in mind, we can create our function:

def square(num):
    return num*num

print(square(3))
#Output-> 9

Using the power(square) operator:

Python comes with a built in with a power (square) operator **. The syntax is quite straight forward as all the other logic or math operators.

def squareOperator(base):
    return base ** 2

print(squareOperator(4))
#Output-> 16

Using the math.pow():

The only difference between the math.pow() and pow resides in the first needs the math module imported and it always return a float number, even if the result of the operation has not a floating point or decimals (if you want to learn more about Float numbers, check What is a float in Python).

import math

def squareMathPow(base, power):
    return math.pow(base, power)

print(squareMathPow(5,2))
#Output-> 25

Using the Numpy np.power() function:

We can also use a built-in function in the numpy library. The syntax is as simple as:

import numpy as np

print(np.power(5, 2))
#Output-> 25

You can find more of these articles at 4Geeks. Hope you enjoyed the reading and keep on the Geek side!