Méthode Python Number log10 ()

La description

Méthode des nombres Python log10() renvoie le logarithme en base 10 de x pour x> 0.

Syntaxe

Voici la syntaxe pour log10() méthode -

import math

math.log10( x )

Note - Cette fonction n'est pas accessible directement, nous devons donc importer un module mathématique, puis nous devons appeler cette fonction en utilisant un objet statique mathématique.

Paramètres

  • x - Ceci est une expression numérique.

Valeur de retour

Cette méthode renvoie le logarithme en base 10 de x pour x> 0.

Exemple

L'exemple suivant montre l'utilisation de la méthode log10 ().

#!/usr/bin/python
import math   # This will import math module

print "math.log10(100.12) : ", math.log10(100.12)
print "math.log10(100.72) : ", math.log10(100.72)
print "math.log10(119L) : ", math.log10(119L)
print "math.log10(math.pi) : ", math.log10(math.pi)

Lorsque nous exécutons le programme ci-dessus, il produit le résultat suivant -

math.log10(100.12) :  2.00052084094
math.log10(100.72) :  2.0031157171
math.log10(119L) :  2.07554696139
math.log10(math.pi) :  0.497149872694