1. 程式人生 > >Python(2) Python 模組幫助文件查詢

Python(2) Python 模組幫助文件查詢

     

方法1:  如果只查詢內建模組,可以在IDLE中開啟的情況下按F1,開啟CHM幫助文件或者輸入需要查詢的包,如下:

1 2 >>>  import  string >>>  help (string)

方法2:

開啟cmd

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Users\Terry>python -m pydoc -p 4567                   #-m 是模組 -p 是埠 pydoc python文件
pydoc server ready at http://localhost:4567/

在瀏覽器中訪問