square operator python code example
Example 1: python square a number
import math
8 * 8 # 64
8 ** 2. # 64
math.pow(8, 2) # 64.0
Example 2: python square number
## Two ways to square the number x
x ** 2
# Returns: 9
pow(x, 2)
# Returns: 9