我们如何在Python中检查字符串是否仅包含数字?

Python有一个内置函数isdigit(),如果字符串中的所有字符都是数字(0-9之间),则返回true

>>> string='9764135408'

>>> string.isdigit()

True

>>> string='091-9764135408'

>>> string.isdigit()

False

您还可以使用正则表达式来检查字符串是否仅包含数字。

>>> import re

>>> bool(re.match('^[0-9]+$','9764135408'))

True

>>> bool(re.match('^[0-9]+$','091-9764135408'))

False

以上是 我们如何在Python中检查字符串是否仅包含数字? 的全部内容, 来源链接: utcz.com/z/335021.html

回到顶部