Number - Integer - in Python
int is the class that creates integer objects
def is_int(x): if (x % 1 == 0): return True else: return False
Python - String (str type)
str(1)