Cómo mostrar el tipo de una variable
#How to Know type of a variable
a = 89 #make a variable
print(type(a)) #print <class 'int'>
OnePunch
#How to Know type of a variable
a = 89 #make a variable
print(type(a)) #print <class 'int'>