Answers for "how to check for a digit in python"

2

python check if string is number

txt = "565543"

x = txt.isnumeric()
Posted by: Guest on June-01-2021
-1

How to know if a string is a number python

def RepresentsInt(s):
    try: 
        int(s)
        return True
    except ValueError:
        return False
Posted by: Guest on March-22-2020

Code answers related to "how to check for a digit in python"

Python Answers by Framework

Browse Popular Code Answers by Language