Cara menunjukkan jenis variabel

#How to Know type of a variable

a = 89 #make a variable
print(type(a))   #print <class 'int'>
OnePunch