Python exp()-Funktion
Beschreibung
exp()-Funktion gibt den Exponenten von x zurück,
Syntax
import mathmath.exp(x)
Hinweis: Auf exp() kann nicht direkt zugegriffen werden. Sie müssen das Mathematikmodul importieren und diese Methode über das statischeObjekt< aufrufen 🎜>.
Parameter
Rückgabe Wert
Gibt den Exponenten von x zurückInstanz
# -*- 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)
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
Beschreibung
exp()-Funktion gibt den Exponenten von x zurück,Syntax
import mathmath.exp(x)
Parameter
Rückgabewert
Gibt den Index von 🎜>1
Teilen Sie ein Beispiel-Tutorial zur exp()-Methode zur Berechnung der Exponentialfunktion in Python2 Beispiel-Tutorial zur Verwendung von Python zum Schreiben von PoC und 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)
Das obige ist der detaillierte Inhalt vonAusführliche Erklärung des exp()-Funktions-Tutorials in Python. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!