Maison > Article > développement back-end > Explication détaillée du didacticiel de la fonction exp() en Python
Fonction Python exp()
Description
La fonction exp() renvoie l'exposant de x,
Syntaxe
import mathmath.exp(x)
Remarque : exp() n'est pas accessible directement. Vous devez importer le module mathématique et appeler cette méthode via l'objet static<.>.
Paramètre
Retour valeur
Renvoyer l'exposant de xInstance
# -*- coding: UTF-8 -*-import math # 导入 math 模块print "math.exp(2) : ", math.exp(2)print "math.exp(100.12) : ", math.exp(100.12)print "math.exp(100.72) : ", math.exp(100.72)print "math.exp(119L) : ", math.exp(119L)print "math.exp(math.pi) : ", math.exp(math.pi)Sortie :
math.exp(2) : 7.38905609893math.exp(100.12) : 3.03084361407e+43math.exp(100.72) : 5.52255713025e+43math.exp(119L) : 4.7978133273e+51math.exp(math.pi) : 23.1406926328
Description
La fonction exp() renvoie l'exposant de x,Syntaxe
import mathmath.exp(x)Remarque : exp() n'est pas accessible directement. Vous devez importer le module mathématique et appeler cette méthode via un objet statique.
Paramètre
Valeur de retour
Renvoie l'index de 🎜>1.
Partagez un exemple de tutoriel sur la méthode exp() utilisée pour calculer l'exponentielle en Python2
Partagez un. exemple de tutoriel sur l'utilisation de python pour écrire poc et exp# -*- coding: UTF-8 -*-import math # 导入 math 模块print "math.exp(2) : ", math.exp(2)print "math.exp(100.12) : ", math.exp(100.12)print "math.exp(100.72) : ", math.exp(100.72)print "math.exp(119L) : ", math.exp(119L)print "math.exp(math.pi) : ", math.exp(math.pi)
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!