Answers for "check if the inputed value is int or not in python"

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
0

how to check if a input is an integer python

def check_user_input(input):
    try:
        # Convert it into integer
        val = int(input)
        print("Input is an integer number. Number = ", val)
    except ValueError:
        try:
            # Convert it into float
            val = float(input)
            print("Input is a float  number. Number = ", val)
        except ValueError:
            print("No.. input is not a number. It's a string")
Posted by: Guest on April-21-2021

Code answers related to "check if the inputed value is int or not in python"

Python Answers by Framework

Browse Popular Code Answers by Language