python print variable type 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)
Example 3: print variable python
str1 = "Hello World"
print(str1)
v = 10
type(v)
# <type 'int'>
str = "Hello"
type(str)
str1 = "Hello World"
print(str1)