The type of a variable specifies which native class the variable derives from. For example, the types of [1, 2, 3], “abc”, and 5 are list, str, and int, respectively.
Solution for How to get the type of a variable in Python : You can use type() to get the type of a variable Call type(object) with a variable as object to get its type.