Answers for "how to see if a string is a number python"

18

python test if number in string

>>> def hasNumbers(inputString):
...     return any(char.isdigit() for char in inputString)
... 
>>> hasNumbers("I own 1 dog")
True
>>> hasNumbers("I own no dog")
False
Posted by: Guest on April-17-2020
7

python test if string is int

'16'.isdigit()
>>>True

'3.14'.isdigit()
>>>False

'Some text'.isdigit()
>>>False
Posted by: Guest on April-10-2020

Code answers related to "how to see if a string is a number python"

Python Answers by Framework

Browse Popular Code Answers by Language