()
Module : math
Retourne x élevé à la puissance y (x**y).
📝 Syntaxe
math.pow(x, y)⚙️ Paramètres
xLa base (float ou int).
yL'exposant (float ou int).
💡 Exemples
import math
math.pow(2, 3)→ 8.0
Module : math
Retourne x élevé à la puissance y (x**y).
math.pow(x, y)xLa base (float ou int).
yL'exposant (float ou int).
import math
math.pow(2, 3)→ 8.0
