python logarithmus
Python hosting: Host, run, and code Python in the cloud!
Tipp
Sie können den Python-Interpreter als Taschenrechner verwenden. Dazu starten Sie einfach Python ohne IDE und Dateinamen. Beispiel:
Python 2.7.6 (Standard, 22. Juni 2015, 17:58:13)
[GCC 4.8.2] auf linux2
Geben Sie "help", "copyright", "Credits" oder "Lizenz" für weitere Informationen.
>>> 18 * 17
306
>>> 2 ** 4
16
>>>
Related Course:
Python Programming Bootcamp: Go from zero to hero
Mathematische Funktionen
Python unterstützt eine Vielzahl von mathematischen Funktionen.
Funktion | Gibt | Beispiel |
---|---|---|
Abs(x) | Der Absolute Wert von x zurückgibt. | {% codeblock lang:python line_number:false %} X =-35 X = abs(x) Print(x) {% endcodeblock %} |
CMP(x,y) |
Gibt-1 zurück, wenn X < y Gibt 0 zurück, wenn x gleich y Gibt 1 zurück, wenn X > y. |
{% codeblock lang:python line_number:false %} X = 6 y = 4 Drucken (cmp(x,y)) {% endcodeblock %} |
EXP(x) | Kehrt die exponentielle x | {% codeblock lang:python line_number:false %} Import-Mathematik X = 6 Drucken (math.exp(x)) {% endcodeblock %} |
Log(x) | Den natürlichen Logarithmus von x | {% codeblock lang:python line_number:false %} Import-Mathematik X = 6 Drucken (math.log(x)) {% endcodeblock %} |
log10(x) | Der Logarithmus Base-10 x | {% codeblock lang:python line_number:false %} Import-Mathematik X = 6 Drucken (math.log10(x)) {% endcodeblock %} |
Pow(x,y) | Das Ergebnis von X ** y | {% codeblock lang:python line_number:false %} Import-Mathematik X = 6 Drucken (math.pow(x,2)) {% endcodeblock %} |
sqrt(x) | Die Quadratwurzel von x | {% codeblock lang:python line_number:false %} Import-Mathematik X = 6 Drucken (math.sqrt(x)) {% endcodeblock %} |
Leave a Reply: