Table of Contents

Python - Integer

About

Number - Integer - in Python

Management

Creation

int

int is the class that creates integer objects

Is Integer

def is_int(x):
    if (x % 1 == 0):
        return True
    else:
        return False

to

toString

Python - String (str type)

str(1)