rlcompleter
Stdlib — TextPython 2.0+Intermediate
Tab-completion for the interactive interpreter
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 rlcompleter print(f"Module: rlcompleter") print(f"Contents: {dir(rlcompleter)[:10]}")
The rlcompleter module is part of Python's standard library. Tab-completion for the interactive interpreter.
Try in PlaygroundTags
stdlibstringtext-processing