Python 3 - Méthode Number atan ()

La description

le atan() renvoie l'arc tangent de x, en radians.

Syntaxe

Voici la syntaxe pour atan() méthode -

atan(x)

Note - Cette fonction n'est pas accessible directement, nous devons donc importer le module mathématique, puis nous devons appeler cette fonction en utilisant l'objet statique mathématique.

Paramètres

x - Cela doit être une valeur numérique.

Valeur de retour

Cette méthode renvoie l'arc tangent de x, en radians.

Exemple

L'exemple suivant montre l'utilisation de la méthode atan ().

#!/usr/bin/python3
import math

print ("atan(0.64) : ",  math.atan(0.64))
print ("atan(0) : ",  math.atan(0))
print ("atan(10) : ",  math.atan(10))
print ("atan(-1) : ",  math.atan(-1))
print ("atan(1) : ",  math.atan(1))

Production

Lorsque nous exécutons le programme ci-dessus, il produit le résultat suivant -

atan(0.64) :  0.569313191101
atan(0) :  0.0
atan(10) :  1.4711276743
atan(-1) :  -0.785398163397
atan(1) :  0.785398163397