Comment vérifier si la variable dans Python est de quel type

kind = "World"
print(type(kind))
kind2 = 0876
print(type(kind2))
Programmer of empires