codecamp

Python3 math.degrees()方法 - 弧度转化为角度

Python math 模块  math 模块


描述

 math.degrees(x) 方法将角度 x 从弧度转换为度数。

在math库中的三角函数大多使用弧度作为度量而非角度,但弧度并不直观,大多数用户更喜欢使用角度制。

1π (PI,值为3.1415...) 弧度等于 180 度,也就是说 1 弧度等于 57.2957795 度。

另有math.radians() 方法将角度值转换为弧度。


语法

math.degrees() 方法语法如下:

math.degrees(x)

参数说明:

  • x -- 必需,数字。如果 x 不是一个数字,返回 TypeError。

返回值

返回一个浮点数,表示角度。


实例

以下实例返回不同弧度转换为度数:

# 导入 math 包
import math

# 输出弧度转换为度数
print (math.degrees(8.90))
print (math.degrees(-20))
print (math.degrees(1))
print (math.degrees(90))

输出结果:

509.9324376664327
-1145.9155902616465
57.29577951308232
5156.620156177409

Python math 模块  math 模块


Python3 math.cosh() 方法 -求双曲余弦值
Python3 math.radians() 方法 - 角度转化为弧度
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

相关教程

Python基础教程

python内置库

python3 math模块

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }