get datatype of variable in python code example
Example 1: print variable type python
v = 10
type(v)
# <type 'int'>
Example 2: check type of variable in python
str = "Hello"
type(str)
v = 10
type(v)
# <type 'int'>
str = "Hello"
type(str)