在 Python 中实现 IsNumber() 函数


在本文中,我们将介绍使用 Python 3.x 或更早版本实现 isNumber() 方法。

此方法以字符串类型作为输入,并根据输入字符串是否为数字返回布尔值 True 或 False。为此,我们借助 try 和 except 语句使用了异常处理。

示例

我们看几个示例 −

 实时演示

# Implementation of isNumber() function
def isNumber(s):
   if(s[0] =='-'):
      s=s[1:]
   #exception handling
   try:
      n = int(s)
      return True
   # catch exception if any error is encountered
   except ValueError:
      return False
inp1 = "786"
inp2 = "-786"
inp3 = "Tutorialspoint"
print(isNumber(inp1))
print(isNumber(inp2))
print(isNumber(inp3))

输出

True
True
False

结论

在本文中,我们学习了如何在 Python 3.x 或更早版本中实现 Implement IsNumber() 函数。

更新于: 29-Aug-2019

105 次浏览

开启你的 职业生涯

参加课程,取得认证

开始学习
广告