Python - Integer
> Procedural Languages > Python > Python - Data Type
Table of Contents
1 - About
2 - Management
2.1 - Creation
2.1.1 - int
int
is the class that creates integer objects
2.2 - Is Integer
def is_int(x): if (x % 1 == 0): return True else: return False
2.3 - to
2.4 - toString
str(1)
Advertising