Buildin Function Python Tutorial

# type() takes an object and returns its type. The  return value is a type object.
print type(4)                                    # int type
print type('Hello World!')                     # string type
print type(type(4))                              # type type