Does anyone know if it’s possible to invoke the Py...
# random
f
Does anyone know if it’s possible to invoke the Python
help
command from the CLI? I would love to be able to get documentation up in a vim buffer, like with
go doc …
1
c
you mean like:
pydoc str
?
❤️ 1
f
Hahaha, I cannot believe I didn’t know about this
😁 1
g
TIL! I've used
python -c 'help()'
in the past, which gives you an interactive prompt.
👍 2