Home / Python Data Types / How to Create an Integer Type Variable in Python In this example we will show how to create an integer type variable in Python. Source Code a = 5 b = 55555555555 c = -5 print(type(a)) print(type(b)) print(type(c)) Output: