Answers for "how to check if the input in string or integer in python"

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
0

how to check if a input is an integer python

whatever = input("Pick an integer > ")
try:
	whatever_as_an_integer = int(whatever)
   	print("That was an integer.")

except ValueError:
    print("That is not an integer.")
Posted by: Guest on February-09-2021

Code answers related to "how to check if the input in string or integer in python"

Python Answers by Framework

Browse Popular Code Answers by Language