Latest web development tutorials

fonction python3 atan ()

python3 numérique python3 numérique


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/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))

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

atan(0.64) :  0.5693131911006619
atan(0) :  0.0
atan(10) :  1.4711276743037347
atan(-1) :  -0.7853981633974483
atan(1) :  0.7853981633974483

python3 numérique python3 numérique