Is there a method that I can use to check if a raw_input is an integer?
raw_input
I found this method after researching in the web:
print isinsta
def checker(): inputt = raw_input("how many u want to check?") try: return int(inputt) except ValueError: print "Error!, pls enter int!" return checker()