词条

大约有 2,000 项符合查询结果 ,库内数据总量为 78,408 项。(搜索耗时:0.0030秒)

771.Python3 math.tau常量 -两倍圆周率τ

math 模块描述math.tau 返回数学常数 τ = 6.283185..., tau 是一个圆周常数,等于 2π,即圆的周长与半径之比。tau 值为 6.283185307179586。 τ的读音类似“套”,是一个值为2π的常数,因为部分学者发现在数学公式中2π更常见,从而认为...

https://www.w3cschool.cn/python3/ref-math-tau.html

772.Python3 math.acos()方法 -求反余弦值

math 模块描述math.acos(x) 返回 x 的反余弦,结果范围在 0 到 pi 之间。math.acos() 接收的参数为 -1 到 1。math.acos(-1) 返回 math.pi 常量。语法math.acos() 方法语法如下:math.acos(x)参数说明:x -- 必需,一个数字, -1 到 1 之间。如果 x 不是...

https://www.w3cschool.cn/python3/ref-math-acos.html

773.Python3 math.acosh()方法 - 求反双曲余弦值

math 模块描述math.acosh(x) 返回 x 的反双曲余弦值。math.acosh() 接收的参数大于等于 1。语法math.acosh() 方法语法如下:math.acosh(x)参数说明:x -- 必需,一个数字,大于等于 1。如果 x 不是一个数字,返回 ​TypeError​。返回值返回一...

https://www.w3cschool.cn/python3/ref-math-acosh.html

774.Python3 math.asin()方法 -求反正弦值

math 模块描述math.asin(x) 返回 x 的反正弦值,结果范围在 -pi/2 到 pi/2 之间。。math.asin() 接收的参数为 -1 到 1。语法math.asin() 方法语法如下:math.asin(x)参数说明:x -- 必需,一个数字, -1 到 1 之间。如果 x 不是一个数字,返回 ​Ty...

https://www.w3cschool.cn/python3/ref-math-asin.html

775.Python3 math.asinh()方法-求反双曲正弦值

math 模块描述math.asinh(x) 返回 x 的反双曲正弦值。语法math.asinh() 方法语法如下:math.asinh(x)参数说明:x -- 必需,个正数或负数。如果 x 不是一个数字,返回 ​TypeError​。返回值返回一个浮点数,表示一个数字的反双曲正弦值。...

https://www.w3cschool.cn/python3/ref-math-asinh.html

776.Python3 math.atan()方法 -求反正切值

math 模块描述math.atan(x) 返回 x 的反正切值,以弧度为单位,结果范围在 -pi/2 到 pi/2 之间。语法math.atan() 方法语法如下:math.atan(x)参数说明:x -- 必需,个正数或负数。如果 x 不是一个数字,返回 TypeError。返回值返回一个浮点数...

https://www.w3cschool.cn/python3/ref-math-atan.html

777.Python3 math.atan2()方法 -求y/x的反正切值

math 模块描述 math.atan2(y,x) 返回给定的 y 及 x 坐标值的反正切值 atan(y / x),以弧度为单位,结果是在 -pi 和 pi 之间。语法math.atan2() 方法语法如下:math.atan2(y, x)参数说明:x -- 必需,正数或负数。y -- 必需,正数或负数。返回值返...

https://www.w3cschool.cn/python3/ref-math-atan2.html

778.Python3 math.atanh()方法 - 求反双曲正切值

math 模块描述math.atanh(x) 返回 x 的反双曲正切值。math.atanh(x) 的参数介于 -0.99 到 0.99 之间。语法math.atanh() 方法语法如下:math.atanh(x)参数说明:x -- 必需,介于 -0.99 和 0.99 之间的正数或负数。 如果 x 不是数字,则返回 ​TypeError​...

https://www.w3cschool.cn/python3/ref-math-atanh.html

779.Python3 math.ceil()方法 - 向上取整

math 模块描述math.ceil(x) 方法将 x 向上舍入到最接近的整数。在math模块中还有一个方法与它功能相近,那就是math.floor() 方法,它可以将数字向下舍入到最接近的整数。语法math.ceil() 方法语法如下:math.ceil(x)参数说明:x -- 必需,...

https://www.w3cschool.cn/python3/ref-math-ceil.html

780.Python3 math.floor() 方法 -向下取整

math 模块描述 math.floor(x) 方法将 x 向下舍入到最接近的整数。 另有math.ceil() 方法。可以将数字向上舍入到最接近的整数。语法math.floor() 方法语法如下:math.floor(x)参数说明:x -- 必需,数字。如果 x 不是一个数字,返回 TypeError。...

https://www.w3cschool.cn/python3/ref-math-floor.html

抱歉,暂时没有相关的微课

w3cschool 建议您:

  • 检查输入的文字是否有误

抱歉,暂时没有相关的视频课程

w3cschool 建议您:

  • 检查输入的文字是否有误

抱歉,暂时没有相关的教程

w3cschool 建议您:

  • 检查输入的文字是否有误

771.Python3 math.tau常量 -两倍圆周率τ

math 模块描述math.tau 返回数学常数 τ = 6.283185..., tau 是一个圆周常数,等于 2π,即圆的周长与半径之比。tau 值为 6.283185307179586。 τ的读音类似“套”,是一个值为2π的常数,因为部分学者发现在数学公式中2π更常见,从而认为...

https://www.w3cschool.cn/python3/ref-math-tau.html

772.Python3 math.acos()方法 -求反余弦值

math 模块描述math.acos(x) 返回 x 的反余弦,结果范围在 0 到 pi 之间。math.acos() 接收的参数为 -1 到 1。math.acos(-1) 返回 math.pi 常量。语法math.acos() 方法语法如下:math.acos(x)参数说明:x -- 必需,一个数字, -1 到 1 之间。如果 x 不是...

https://www.w3cschool.cn/python3/ref-math-acos.html

773.Python3 math.acosh()方法 - 求反双曲余弦值

math 模块描述math.acosh(x) 返回 x 的反双曲余弦值。math.acosh() 接收的参数大于等于 1。语法math.acosh() 方法语法如下:math.acosh(x)参数说明:x -- 必需,一个数字,大于等于 1。如果 x 不是一个数字,返回 ​TypeError​。返回值返回一...

https://www.w3cschool.cn/python3/ref-math-acosh.html

774.Python3 math.asin()方法 -求反正弦值

math 模块描述math.asin(x) 返回 x 的反正弦值,结果范围在 -pi/2 到 pi/2 之间。。math.asin() 接收的参数为 -1 到 1。语法math.asin() 方法语法如下:math.asin(x)参数说明:x -- 必需,一个数字, -1 到 1 之间。如果 x 不是一个数字,返回 ​Ty...

https://www.w3cschool.cn/python3/ref-math-asin.html

775.Python3 math.asinh()方法-求反双曲正弦值

math 模块描述math.asinh(x) 返回 x 的反双曲正弦值。语法math.asinh() 方法语法如下:math.asinh(x)参数说明:x -- 必需,个正数或负数。如果 x 不是一个数字,返回 ​TypeError​。返回值返回一个浮点数,表示一个数字的反双曲正弦值。...

https://www.w3cschool.cn/python3/ref-math-asinh.html

776.Python3 math.atan()方法 -求反正切值

math 模块描述math.atan(x) 返回 x 的反正切值,以弧度为单位,结果范围在 -pi/2 到 pi/2 之间。语法math.atan() 方法语法如下:math.atan(x)参数说明:x -- 必需,个正数或负数。如果 x 不是一个数字,返回 TypeError。返回值返回一个浮点数...

https://www.w3cschool.cn/python3/ref-math-atan.html

777.Python3 math.atan2()方法 -求y/x的反正切值

math 模块描述 math.atan2(y,x) 返回给定的 y 及 x 坐标值的反正切值 atan(y / x),以弧度为单位,结果是在 -pi 和 pi 之间。语法math.atan2() 方法语法如下:math.atan2(y, x)参数说明:x -- 必需,正数或负数。y -- 必需,正数或负数。返回值返...

https://www.w3cschool.cn/python3/ref-math-atan2.html

778.Python3 math.atanh()方法 - 求反双曲正切值

math 模块描述math.atanh(x) 返回 x 的反双曲正切值。math.atanh(x) 的参数介于 -0.99 到 0.99 之间。语法math.atanh() 方法语法如下:math.atanh(x)参数说明:x -- 必需,介于 -0.99 和 0.99 之间的正数或负数。 如果 x 不是数字,则返回 ​TypeError​...

https://www.w3cschool.cn/python3/ref-math-atanh.html

779.Python3 math.ceil()方法 - 向上取整

math 模块描述math.ceil(x) 方法将 x 向上舍入到最接近的整数。在math模块中还有一个方法与它功能相近,那就是math.floor() 方法,它可以将数字向下舍入到最接近的整数。语法math.ceil() 方法语法如下:math.ceil(x)参数说明:x -- 必需,...

https://www.w3cschool.cn/python3/ref-math-ceil.html

780.Python3 math.floor() 方法 -向下取整

math 模块描述 math.floor(x) 方法将 x 向下舍入到最接近的整数。 另有math.ceil() 方法。可以将数字向上舍入到最接近的整数。语法math.floor() 方法语法如下:math.floor(x)参数说明:x -- 必需,数字。如果 x 不是一个数字,返回 TypeError。...

https://www.w3cschool.cn/python3/ref-math-floor.html
App下载
App下载

扫描二维码

下载编程狮App

关注有礼
微信公众号

扫码关注 领资料包

意见反馈
帮助中心
返回顶部