您的位置:首頁技術文章
文章詳情頁

python文檔怎么查看?

瀏覽:115日期:2022-07-15 15:32:03

問題描述

請教學習練習Python的過程中,經常有些模塊下的方法記不全,或者忘記正確使用方法,或者編碼的時候報錯了這時候會想到補習一個相關的知識點,除了百度相關關鍵字外,有一個方法應該就是查DOC文檔了。但是本地的DOC文檔都是標準庫的,如果遇到第三方庫的一些知識標準姿勢是去哪里查看呢

問題解答

回答1:

調用help函數,可以看到一個函數或者方法的字符串文檔。

In [1]: import requestsIn [2]: help(requests.get)Help on function get in module requests.api:get(url, params=None, **kwargs) Sends a GET request. :param url: URL for the new :class:`Request` object. :param params: (optional) Dictionary or bytes to be sent in the query string for the :class:`Request`. :param **kwargs: Optional arguments that ``request`` takes. :return: :class:`Response <Response>` object :rtype: requests.Response

使用dir可以查看模塊或對象都有那些方法。

In [3]: dir(requests)Out[3]:[’ConnectionError’, ’HTTPError’, ’compat’, ’cookies’, ’delete’, ’exceptions’, ’get’, ’head’, ’hooks’, ...

使用ipython+?查看

In [4]: requests.get?Type:functionString form: <function get at 0x10e6c35f0>File:/Library/Python/2.7/site-packages/requests/api.pyDefinition: requests.get(url, params=None, **kwargs)Docstring:Sends a GET request.:param url: URL for the new :class:`Request` object.:param params: (optional) Dictionary or bytes to be sent in the query string for the :class:`Request`.:param **kwargs: Optional arguments that ``request`` takes.:return: :class:`Response <Response>` object:rtype: requests.Response

使用pydoc查看字符串文檔

? ~ python -m pydoc requestsHelp on package requests:NAME requestsFILE /Library/Python/2.7/site-packages/requests/__init__.pyDESCRIPTION requests HTTP libraryRequests is an HTTP library, written in Python, for human beings. Basic GET usage: >>> import requests >>> r = requests.get(’https://www.python.org’) >>> r.status_code 200 >>> ’Python is a programming language’ in r.content True回答2:

很多第三方庫, 都有他們自己的官網, 例如requests庫, jinja2庫等等. 所以如果你想用的庫,剛好有他們的官網, 可以上通過搜索他們的官網上去學習, 但是如果很不幸沒有, 那只能通過別人的博客或者分享去學習, 如果等基礎到一定程度, 可以去直接看他們模塊的源碼, 從中找到你需要的東西

標簽: Python 編程
相關文章:
国产综合久久一区二区三区