Python中带有示例的math.tan()方法

Python math.tan()方法 (Python math.tan() method)

math.tan() method is a library method of math module, it is used to get the tangent of the number radians, it accepts a number returns the tangent of the given number in radians.

math.tan()方法数学模块的库方法,用于获取弧度数的正切值,接受数字以弧度返回给定数的正切值。

Note: math.tan() method accepts the only number, if we provide anything else except the number, it returns error TypeError - "TypeError: a float is required".

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

Syntax of math.tan() method:

math.tan()方法的语法:

    math.tan(x)

Parameter(s): x – is the number whose tangent to be calculated.

参数: x –是要计算其切线的数字。

Return value: float – it returns a float value that is the tangent value of the number x radians.

返回值: float-返回一个浮点值,该值是数字x弧度的正切值。

Example:

例:

    Input:
    a = 0.278

    # function call
    print(math.tan(a))

    Output:
    0.2853901924877167

Python代码演示math.tan()方法的示例 (Python code to demonstrate example of math.tan() method)

# python code to demonstrate example of 
# math.tan() method 

# importing math module
import math

# number
a = -1
print("tan(",a,") is = ", math.tan(a))

a = 0
print("tan(",a,") is = ", math.tan(a))

a = 0.278
print("tan(",a,") is = ", math.tan(a))

a = 1
print("tan(",a,") is = ", math.tan(a))

Output

输出量

tan( -1 ) is =  -1.5574077246549023
tan( 0 ) is =  0.0
tan( 0.278 ) is =  0.2853901924877167
tan( 1 ) is =  1.5574077246549023

TypeError example

TypeError示例

# python code to demonstrate example of 
# math.tan() method with an exception

# importing math module
import math

# number
a = "2"
print("tan(",a,") is = ", math.tan(a))

Output

输出量

Traceback (most recent call last):
  File "/home/main.py", line 9, in <module>
    print("tan(",a,") is = ", math.tan(a))
TypeError: a float is required


翻译自: https://www.includehelp.com/python/math-tan-method-with-example.aspx

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值