python carré un nombre
import math
8 * 8 # 64
8 ** 2. # 64
math.pow(8, 2) # 64.0
Mattalui
import math
8 * 8 # 64
8 ** 2. # 64
math.pow(8, 2) # 64.0
n = 5
result = pow(n, 2)
print(result)