📜  python 测试字符串中的数字 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:55.423000             🧑  作者: Mango

代码示例1
>>> def hasNumbers(inputString):
...     return any(char.isdigit() for char in inputString)
... 
>>> hasNumbers("I own 1 dog")
True
>>> hasNumbers("I own no dog")
False