Answers for "integer in a string python check"

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
2

python check if input is a number

user_input = input("Enter something:")

if type(user_input) == int:
    return user_input
else:
    print("Not a number")
Posted by: Guest on July-22-2020

Code answers related to "integer in a string python check"

Python Answers by Framework

Browse Popular Code Answers by Language