Python Tan () function

Source: Internet
Author: User

Describe

Tan () returns the sinusoidal value of x radians.

Grammar

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

Import Mathmath.tan (x)

Note:Tan () is not directly accessible, you need to import the math module, and then call the method through the math static object.

Parameters
    • X--a numeric value.
return value

Returns the sine of x radians, with values from 1 to 1.

Instance

The following shows an example of using the tan () method:

#!/usr/bin/python3import mathprint ("(Tan (3):",  Math.tan (3)) print ("Tan ( -3):",  Math.tan ( -3)) print ("Tan (0) : ",  Math.tan (0)) print (" Tan (Math.PI): ",  Math.tan (Math.PI)) print (" Tan (MATH.PI/2): ",  Math.tan (Math.PI /2)) print ("Tan (MATH.PI/4):",  Math.tan (MATH.PI/4))

When the above instance is run, the output is:

(Tan (3):  -0.1425465430742778tan ( -3):  0.1425465430742778tan (0):  0.0tan (Math.PI):  - 1.2246467991473532e-16tan (MATH.PI/2):  1.633123935319537e+16tan (MATH.PI/4):  0.9999999999999999

Python Tan () function

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.