Check if INTEGER

#.isdigit() and .isnumeric() dont detect negative ints
def is_int(astr):
	isit = True
	try: int(astr)
	except ValueError: isit = False	
	return isit