Easy Tutorial
❮ Python Type Conversion Python String Length ❯

Python3 atan() Function

Python3 Numbers


Description

The atan() function returns the arctangent of x in radians.


Syntax

Here is the syntax for the atan() method:

import math

math.atan(x)

Note: The atan() function cannot be accessed directly; it requires importing the math module and then calling this method via the math static object.


Parameters


Return Value

Returns the arctangent of x in radians.


Example

The following example demonstrates the use of the atan() method:

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

The output of the above example is:

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

Python3 Numbers

❮ Python Type Conversion Python String Length ❯