词条

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

781.Python3 math.copysign()方法 -返回固定符号的值

math 模块描述math.copysign(x, y)方法返回一个带有绝对值(magnitude)为 x ,符号(sign)为 y 的数字。如果 x 是 NaN,则返回 NaN。如果 y 是 NaN,则返回 x 的绝对值。这个方法的作用是将两个数字的符号合并到一起,返回一个新的数字...

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

782.Python3 math.cos()方法 - 求余弦值

math 模块描述math.cos(x) 返回 x 弧度的余弦值。语法math.cos() 方法语法如下:math.cos(x)参数说明:x -- 必需,数字。如果 x 不是数字,则返回 TypeError。返回值返回一个浮点数,表示 x 的余弦值,介于 -1 到 1 之间。实例以下实例返回...

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

783.Python3 math.cosh() 方法 -求双曲余弦值

math 模块描述 math.cosh(x) 返回 x 的双曲余弦值,相当于 (exp(number) + exp(-number)) / 2。语法math.cosh() 方法语法如下:math.cosh(x)参数说明:x -- 必需,个正数或负数。如果 x 不是一个数字,返回 TypeError。返回值返回一个浮点数,表示一...

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

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

math 模块描述 math.degrees(x) 方法将角度 x 从弧度转换为度数。在math库中的三角函数大多使用弧度作为度量而非角度,但弧度并不直观,大多数用户更喜欢使用角度制。1π (PI,值为3.1415...) 弧度等于 180 度,也就是说 1 弧度等于 57...

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

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

math 模块描述math.radians(x) 方法将角度 x 从角度转换为弧度。在math模块中(特别是三角函数相关的函数),都是使用弧度制,所以在使用之前要先将角度数值转化为弧度才能进行运算。另有math.degrees() 方法,可以将弧度值转换为...

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

786.Python3 math.exp()方法 -求e 的 x 次幂

math 模块描述math.exp(x) 方法返回 e 的 x 次幂(次方)Ex,其中 e = 2.718281... 是自然对数的基数。语法math.exp() 方法语法如下:math.exp(x)参数说明:x -- 必需,数字,指定指数。如果 x 不是一个数字,返回 TypeError。返回值一个浮点值...

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

787.Python3 math.expm1()方法 -求e 的 x 次幂(次方)减 1

math 模块描述 math.expm1(x) 方法返回 e 的 x 次幂(次方)减 1,Ex - 1,其中 e = 2.718281... 是自然对数的基数。math.expm1(x) 方法比调用 math.exp() 减去 1 更精确。语法math.expm1() 方法语法如下:math.expm1(x)参数说明:x -- 必需,数字,指定...

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

788.Python3 math.factorial()方法 -求阶乘

math 模块描述math.factorial(x) 方法返回 x 的阶乘。参数只能是正整数。一个数字的阶乘是所有整数的乘积之和,例如,6 的阶乘是: 6 x 5 x 4 x 3 x 2 x 1 = 720。语法math.factorial() 方法语法如下:math.factorial(x)参数说明:x -- 必需,正整...

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

789.Python3 math.frexp()方法 -求尾数和指数

math 模块描述math.frexp(x) 方法以 (m, e) 对的形式返回 x 的尾数和指数。该方法的数学公式为: number = m * 2**e。语法math.frexp() 方法语法如下:math.frexp(x)参数说明:x -- 必需,正数或负数。如果 x 不是一个数字,返回 TypeError。返回值...

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

790.Python3 math.fsum() 方法 - 求所有元素的总和

math 模块描述 math.fsum(iterable) 方法计算可迭代对象 (元组, 数组, 列表, 等)中的元素的总和。语法math.fsum() 方法语法如下:math.fsum(iterable)参数说明:iterable -- 必需,可迭代对象,可以是列表、元组、数组。如果可迭代对象元素不...

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

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

w3cschool 建议您:

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

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

w3cschool 建议您:

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

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

w3cschool 建议您:

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

781.Python3 math.copysign()方法 -返回固定符号的值

math 模块描述math.copysign(x, y)方法返回一个带有绝对值(magnitude)为 x ,符号(sign)为 y 的数字。如果 x 是 NaN,则返回 NaN。如果 y 是 NaN,则返回 x 的绝对值。这个方法的作用是将两个数字的符号合并到一起,返回一个新的数字...

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

782.Python3 math.cos()方法 - 求余弦值

math 模块描述math.cos(x) 返回 x 弧度的余弦值。语法math.cos() 方法语法如下:math.cos(x)参数说明:x -- 必需,数字。如果 x 不是数字,则返回 TypeError。返回值返回一个浮点数,表示 x 的余弦值,介于 -1 到 1 之间。实例以下实例返回...

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

783.Python3 math.cosh() 方法 -求双曲余弦值

math 模块描述 math.cosh(x) 返回 x 的双曲余弦值,相当于 (exp(number) + exp(-number)) / 2。语法math.cosh() 方法语法如下:math.cosh(x)参数说明:x -- 必需,个正数或负数。如果 x 不是一个数字,返回 TypeError。返回值返回一个浮点数,表示一...

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

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

math 模块描述 math.degrees(x) 方法将角度 x 从弧度转换为度数。在math库中的三角函数大多使用弧度作为度量而非角度,但弧度并不直观,大多数用户更喜欢使用角度制。1π (PI,值为3.1415...) 弧度等于 180 度,也就是说 1 弧度等于 57...

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

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

math 模块描述math.radians(x) 方法将角度 x 从角度转换为弧度。在math模块中(特别是三角函数相关的函数),都是使用弧度制,所以在使用之前要先将角度数值转化为弧度才能进行运算。另有math.degrees() 方法,可以将弧度值转换为...

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

786.Python3 math.exp()方法 -求e 的 x 次幂

math 模块描述math.exp(x) 方法返回 e 的 x 次幂(次方)Ex,其中 e = 2.718281... 是自然对数的基数。语法math.exp() 方法语法如下:math.exp(x)参数说明:x -- 必需,数字,指定指数。如果 x 不是一个数字,返回 TypeError。返回值一个浮点值...

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

787.Python3 math.expm1()方法 -求e 的 x 次幂(次方)减 1

math 模块描述 math.expm1(x) 方法返回 e 的 x 次幂(次方)减 1,Ex - 1,其中 e = 2.718281... 是自然对数的基数。math.expm1(x) 方法比调用 math.exp() 减去 1 更精确。语法math.expm1() 方法语法如下:math.expm1(x)参数说明:x -- 必需,数字,指定...

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

788.Python3 math.factorial()方法 -求阶乘

math 模块描述math.factorial(x) 方法返回 x 的阶乘。参数只能是正整数。一个数字的阶乘是所有整数的乘积之和,例如,6 的阶乘是: 6 x 5 x 4 x 3 x 2 x 1 = 720。语法math.factorial() 方法语法如下:math.factorial(x)参数说明:x -- 必需,正整...

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

789.Python3 math.frexp()方法 -求尾数和指数

math 模块描述math.frexp(x) 方法以 (m, e) 对的形式返回 x 的尾数和指数。该方法的数学公式为: number = m * 2**e。语法math.frexp() 方法语法如下:math.frexp(x)参数说明:x -- 必需,正数或负数。如果 x 不是一个数字,返回 TypeError。返回值...

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

790.Python3 math.fsum() 方法 - 求所有元素的总和

math 模块描述 math.fsum(iterable) 方法计算可迭代对象 (元组, 数组, 列表, 等)中的元素的总和。语法math.fsum() 方法语法如下:math.fsum(iterable)参数说明:iterable -- 必需,可迭代对象,可以是列表、元组、数组。如果可迭代对象元素不...

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

扫描二维码

下载编程狮App

关注有礼
微信公众号

扫码关注 领资料包

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