“Carré un nombre en python” Réponses codées

python carré un nombre

import math

8 * 8          # 64
8 ** 2.        # 64
math.pow(8, 2) # 64.0
Mattalui

Carré un nombre en python

n = 5
result = pow(n, 2)
print(result)
Itchy Impala

Réponses similaires à “Carré un nombre en python”

Questions similaires à “Carré un nombre en python”

Plus de réponses similaires à “Carré un nombre en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code