Use of the acos () method to calculate trigonometric functions using Python

Source: Internet
Author: User
Tags acos
This article describes how to use the acos () method to calculate trigonometric functions in Python. it is a basic knowledge in Python learning. For more information, see acos () returns the arc cosine of x, expressed in radians.
Syntax

The following is the syntax of the acos () method:

Acos (x)

Note: This function cannot be directly accessed. Therefore, we need to import the math module and then use the static object of math to call this function.
Parameters

  • X -- this must be a numerical value in the range-1 to 1. if x is greater than 1, it produces an error.

Return value

Returns the arc cosine of X in radians.
Example

The following example shows how to use the acos () method.

#! /Usr/bin/pythonimport mathprint "acos (0.64):", math. acos (0.64) print "acos (0):", math. acos (0) print "acos (-1):", math. acos (-1) print "acos (1):", math. acos (1)

When we run the above program, it will produce the following results:

Acos (0.64): 0.876298061168 acos (0): 1.57079632679 acos (-1): 3.14159265359 acos (1): 0.0

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.