math求旋转角度 python_带有Python示例的math.degrees()方法

Python math.degrees() 方法

math.degrees()方法是数学模块的一种库方法,用于将角度值从弧度转换为度,它接受一个数字并返回以度为单位的角度值。

注意: math.degrees()方法仅接受数字,如果我们提供除数字以外的其他任何内容,它将返回错误TypeError – “ TypeError:需要浮点数”。

它的语法 math.degrees() 方法:

math.degrees(x)

Parameter(s): x –是要转换为度的弧度数。

返回值: float-它返回一个浮点值,即以度为单位的角度值。

示例

Input:

x = 10.25

# 函数调用

print(math.degrees(x))

Output:

587.2817400090938

Python代码演示示例 math.degrees() 方法

# Python代码演示示例

# math.degrees() method

# 导入数学模块

import math

# 弧度数

x = 0

print("math.degrees(",x,"): ", math.degrees(x))

x = 0.25

print("math.degrees(",x,"): ", math.degrees(x))

x = 10.25

print("math.degrees(",x,"): ", math.degrees(x))

x = -0.25

print("math.degrees(",x,"): ", math.degrees(x))

输出结果

math.degrees( 0 ):  0.0

math.degrees( 0.25 ):  14.32394487827058

math.degrees( 10.25 ):  587.2817400090938

math.degrees( -0.25 ):  -14.32394487827058

TypeError示例

# Python代码演示示例

# math.degrees() method with exception

# 导入数学模块

import math

# 弧度数

x = "10"

print("math.degrees(",x,"): ", math.degrees(x))

输出结果

Traceback (most recent call last):

File "/home/main.py", line 9, in 

print("math.degrees(",x,"): ", math.degrees(x))

TypeError: a float is required

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值