how to check if an input is an int in python code example
Example 1: how to know if a input is a interger in 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.")
Example 2: python check if int
colors = [11, 34.1, 98.2, 43, 45.1, 54, 54]
for x in colors:
if int(x) == x:
print(x)
if isinstance(x, int):
print(x)
Example 3: how to check if a input is an integer python
def check_user_input(input):
try:
val = int(input)
print("Input is an integer number. Number = ", val)
except ValueError:
try:
val = float(input)
print("Input is a float number. Number = ", val)
except ValueError:
print("No.. input is not a number. It's a string")
Example 4: how to check if digit in int python
s = set(str(4059304593))
print('2' in s)