python type of variable code example

Example 1: print variable type python

v = 10
type(v)
# <type 'int'>

Example 2: how to check the type of a variable in python

print(type(x))

Example 3: type of object python

>>> type([]) is list
True
>>> type({}) is dict
True
>>> type('') is str
True
>>> type(0) is int
True

Example 4: variables in python

#Variables
#Name your variable

myvar = 'Variable'
Number = 9

print(myvar, Number, 'are the variables I made')

Example 5: check type of variable in python

str = "Hello"
type(str)

Example 6: python typeof

type(object)