Python rechnet bei trigoinometrischen Funktionen in Bogenmaß, Bogenmaß und Gradmaß lassen sich natürlich konvertieren. Die
Konstante pi ist natürlich auch vorhanden.
Konstante pi
print(math.pi) |
3.14159265359 |
Grad und Bogenmaß konvertieren
print(math.radians(180)) |
3.14159265359 |
print(math.degrees(math.pi)) |
180.0 |
Sinus, Cosinus und Tangens mit Umkehrfunktion
print(math.sin(math.pi/2)) |
1.0 |
print(math.asin(1)) |
1.57079632679 |
print(math.cos(math.pi)) |
-1.0 |
print(math.acos(-1)) |
3.14159265359 |
print(math.tan(math.pi/4)) |
1.0 |
print(math.atan(1)) |
0.785398163397 |
Die entsprechenden Hyperbelfunktionen
print(math.sinh(2)) |
3.62686040785 |
print(math.asinh(3.62686040785)) |
2.0 |
print(math.cosh(2)) |
3.76219569108 |
print(math.acosh(3.76219569108)) |
2.0 |
print(math.tanh(2)) |
0.964027580076 |
print(math.atanh(0.964027580076)) |
2.0 |