Use of the degrees () method in Python

Source: Internet
Author: User

Use of the degrees () method in Python

This article mainly introduces the use of the degrees () method in Python. It is the basic knowledge in getting started with Python. For more information, see

The degrees () method converts degrees from radians to degrees x.

Syntax

The syntax of the degrees () method is as follows:

?

1

Degrees (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

Return Value

X -- this must be a value.

This method returns an angle value.

Example

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

?

1

2

3

4

5

6

7

8

9

#! /Usr/bin/python

Import math

 

Print "degrees (3):", math. degrees (3)

Print "degrees (-3):", math. degrees (-3)

Print "degrees (0):", math. degrees (0)

Print "degrees (math. pi):", math. degrees (math. pi)

Print "degrees (math. pi/2):", math. degrees (math. pi/2)

Print "degrees (math. pi/4):", math. degrees (math. pi/4)

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

?

1

2

3

4

5

6

Degrees (2): 171.887338539

Degrees (-3):-171.887338539.

Degrees (0): 0.0

Degrees (math. pi): 180.0

Degrees (math. pi/2): 90.0

Degrees (math. pi/4): 45.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.