Section courante

A propos

Section administrative du site

LOG10

Logarithme 10
Python math

Syntaxe

log10(x)

Paramètres

Nom Description
x Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter

Description

Cette fonction retourne le logarithme décimal.

Exemple

Voici un exemple permettant d'afficher le logarithme en base 10 inférieurs à 2 :

  1. from math import log10
  2.  
  3. I = 0.1
  4. while I < 2.0:
  5.     print "LOG10(" +str(I) + ")=" + str(log10(I))
  6.     I += 0.1

on obtiendra le résultat suivant :

LOG10(0.1)=-1.0
LOG10(0.2)=-0.698970004336
LOG10(0.3)=-0.52287874528
LOG10(0.4)=-0.397940008672
LOG10(0.5)=-0.301029995664
LOG10(0.6)=-0.221848749616
LOG10(0.7)=-0.154901959986
LOG10(0.8)=-0.0969100130081
LOG10(0.9)=-0.0457574905607
LOG10(1.0)=-4.82163733277e-17
LOG10(1.1)=0.0413926851582
LOG10(1.2)=0.0791812460476
LOG10(1.3)=0.113943352307
LOG10(1.4)=0.146128035678
LOG10(1.5)=0.176091259056
LOG10(1.6)=0.204119982656
LOG10(1.7)=0.230448921378
LOG10(1.8)=0.255272505103
LOG10(1.9)=0.278753600953


Dernière mise à jour : Mercredi, le 14 septembre 2016