terminal - In Python, what does pydoc do? -


new programming , python altogether. in book i'm learning from, author suggested find out purpose of pydoc.

i did google search on it, , found match (from gnome terminal) didn't make sense me. mind simplifying bit? thanks.

pydoc / documentation module python.

use on windows terminal understand function in python :

python -m pydoc <function> 

eg.

python -m pydoc raw_input 

if documentation particular function long, use 'q' out of it.

e.g. in case of

python -m pydoc tkinter 

Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -