Radians () method for converting angles to radians in python

Source: Internet
Author: User
The radians () method converts the angle to the radian angle x.
Grammar

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

Radians (x)

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

  • X--This must be a numeric value.

return value

This method returns the Radian value of an angle.
Example

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

#!/usr/bin/pythonimport mathprint "radians (3):", Math.radians (3) print "radians ( -3):", Math.radians ( -3) print "radians (0): ", Math.radians (0) print" radians (Math.PI): ", Math.radians (Math.PI) print" radians (MATH.PI/2): ", Math.radians (Mat H.PI/2) print "radians (MATH.PI/4):", Math.radians (MATH.PI/4)

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

Radians (3): 0.0523598775598radians ( -3): -0.0523598775598radians (0): 0.0radians (Math.PI): 0.0548311355616radians ( MATH.PI/2): 0.0274155677808radians (MATH.PI/4): 0.0137077838904
  • 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.