Below are presented 3 methods to view Python documentation offline ( without internet connection ), while having already python installed on the system.
Open with File Explorer the file found at \python\path\Doc\pythonxxx.chm , for python 3.71 the absolute path is C:\Users\username\AppData\Local\Programs\Python\Python37\Doc\python371.chm.
Open cmd.exe on Windows or terminal on Linux and run pydoc:
> python -m pydoc os.listdir
> pydoc os.path.join
Open Python installed IDE ( PyCharm ) or run python at CMD / Terminal, and use the help function to search in documentation
help ran directly in a script opened in the IDE will print in console all the information about the searched objects