Python Notes (0.14.0)

18. Types module

status:in progress

The types module define names for all type symbols known in the standard interpreter.

18.1. Quickstart

>>> import types
>>> types.BooleanType(True)
True