32. Layanan Bahasa PythonΒΆ
Python menyediakan sejumlah modul untuk membantu bekerja dengan bahasa Python. Modul-modul ini mendukung tokenizing, parsing, analisis sintaks, bytecode disassembly, dan berbagai fasilitas lainnya.
Modul-modul ini termasuk:
- 32.1.
parser--- Access Python parse trees - 32.2.
ast--- Abstract Syntax Trees - 32.3.
symtable--- Access to the compiler's symbol tables - 32.4.
symbol--- Constants used with Python parse trees - 32.5.
token--- Konstanta digunakan dengan pohon pengurai (parse tree) Python - 32.6.
keyword--- Pengujian untuk kata kunci Python - 32.7.
tokenize--- Tokenizer for Python source - 32.8.
tabnanny--- Detection of ambiguous indentation - 32.9.
pyclbr--- Python class browser support - 32.10.
py_compile--- Compile Python source files - 32.11.
compileall--- Byte-compile Python libraries - 32.12.
dis--- Disassembler for Python bytecode - 32.13.
pickletools--- Tools for pickle developers
