I am wondering if there is a CLI like 'man.py' dedicated to Python?
ex,
man.py os.system
> system(command) -> exit_status
>
> Execute the command (a string) in a subshell.
The pydoc module provides it:
$ python -m pydoc os.system
Help on built-in function system in os:
os.system = system(...)
system(command) -> exit_status
Execute the command (a string) in a subshell.
$
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With