token

Stdlib — IntrospectionPython 2.0+Advanced

Constants for Python parse tree token types

Quick Info

Documentation
Official Docs
Python Version
2.0+
Dependencies
None — Python Standard Library
Install
Included with Python

Learn by Difficulty

Quick Example

python
import token

print(f"Module: token")
print(f"Contents: {dir(token)[:10]}")

The token module is part of Python's standard library. Constants for Python parse tree token types.

Try in Playground

Tags

stdlibintrospectionmetaprogramming