📜  如果有任何数字 python 代码示例

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

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