Links: PYTHON
Rel:
Ref:
Tags: #public

Windows: python -m pip install wheel pyreadline
will enable Tab-auto-completions within the python shell (otherwise available by default within the python shell >>> prompt). If nothing completes when pressing Tab, this means more than 1 specific name is available. Press Tab again and the multiple names available will print:

>>> _
_                 __debug__         __loader__(       __peg_parser__ 
__annotations__   __doc__           __name__          __spec__
__build_class__(  __import__(       __package__   

-> ...
- https://softwareengineering.stackexchange.com/questions/114520/is-it-wrong-or-bad-to-use-autocomplete ???