termios
Stdlib — OS/FilePython 2.0+Intermediate
POSIX terminal I/O control
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 termios print(f"Module: termios") print(f"Contents: {dir(termios)[:10]}")
The termios module is part of Python's standard library. POSIX terminal I/O control.
Try in PlaygroundTags
stdlibfile-iosystem