Méthode Python Number log ()

La description

Méthode des nombres Python log() renvoie le logarithme naturel de x, pour x> 0.

Syntaxe

Voici la syntaxe pour log() méthode -

import math

math.log( 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 naturel de x, pour x> 0.

Exemple

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

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

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

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

math.log(100.12) :  4.60636946656
math.log(100.72) :  4.61234438974
math.log(119L) :  4.77912349311
math.log(math.pi) :  1.14472988585