isinstance(n, int) # n = 9, Returns True / n = 5.5, Returns False
txt = "565543"
x = txt.isnumeric()
if type(variable) == int or type(variable) == float:
isNumber = True
var.isdigit()
#return true if all the chars in the string are numbers
#return false if not all the chars in the string are numbers
N.is_integer()
import numbers
variable = 5
print(isinstance(5, numbers.Number))