Latest web development tutorials

fonction Python atan ()

chiffres Python chiffres Python


description

atan () retourne l'arctangente de x en radians.


grammaire

Ce qui suit est la syntaxe de méthode atan ():

import math

math.atan(x)

Note: atan () ne sont pas directement accessibles, vous devez importer le module de mathématiques, puis appeler la méthode par mathématiques objets statiques.


Paramètres

  • x - une valeur.

Valeur de retour

Renvoie l'arctangente de x en radians.


Exemples

Le tableau suivant montre un exemple de l'utilisation de atan () Méthode:

#!/usr/bin/python
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)

Après avoir exécuté l'exemple ci-dessus est sortie:

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

chiffres Python chiffres Python