Using Python to compute the Atan () method of trigonometric functions

Source: Internet
Author: User
Tags numeric value

This article mainly introduces the use of the Atan () method of using Python to compute trigonometric functions, which is the basic knowledge of the introduction of Python, and the need of friends can refer to

The Atan () method returns the tangent value of x, in radians.

Syntax

The following is the syntax for the Atan () method:

Atan (x)

Note: This function is not directly accessible, so we need to import the math module, and then we need to call this function with the static object of math.

Parameters

X--This must be a numeric value.

return value

This method returns the tangent value of x, in radians.

Example

The following example shows the use of the Atan () method.

?

1

2

3

4

5

6

7

8#!/usr/bin/python

Import Math

Print "Atan (0.64):", Math.atan (0.64)

Print "Atan (0):", Math.atan (0)

Print "Atan:", Math.atan (10)

Print "Atan ( -1):", Math.atan (-1)

Print "Atan (1):", Math.atan (1)

When we run the above program, it produces the following results:

?

1

2

3

4

5atan (0.64): 0.569313191101

Atan (0): 0.0

Atan (10): 1.4711276743

Atan (-1):-0.785398163397

Atan (1): 0.785398163397

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.