请问python库函数介绍哪里可以看?
举个例子,如下图所示
我用了from selenium import webdriver
然后webdriver 有很多功能函数,我要到什么网站能查到这些函数的用法和介绍呢?
同理,还有time的库,我知道用time.sleep,但是有没有什么网站能够给我个介绍,time下面总共有哪些函数,分别是什么功能?
Python纯百度自学的,所以没有大方向,系统性很差,,请各位大神指点。
回答:
楼上已经给了你要的两个文档的地址。
我教你以后怎么自己找其他库的。
以大名鼎鼎的 requests
库为例,在终端中输入以下命令:
pip show requests # 如果是 pip3 开头就换成 pip3
回车后会看到:
Name: requestsVersion: 2.24.0
Summary: Python HTTP for Humans.
Home-page: https://requests.readthedocs.io
Author: Kenneth Reitz
Author-email: me@kennethreitz.org
License: Apache 2.0
Location: /usr/local/lib/python3.6/site-packages
Requires: chardet, urllib3, idna, certifi
其中 Home-page
一项就是这个包的官方主页了,里面一般来说都会有文档的。
回答:
https://selenium-python-zh.readthedocs.io/en/latest/api.html
https://docs.python.org/3/library/time.html#functions
回答:
- 利用 IDE 可以跳转到函数源码位置,注释就在里面。
- 用命令
pydoc
, 举例pydoc requests.post
。
回答:
除了找官方文档,如果不是深入学习的话,只是了解类和方法的大概用法,可以用python自带的help函数。例如在python交互式界面中输入。
from selenium import webdriverhelp(webdriver.Firefox.find_element)
之后就能看到简略的说明
Help on function find_element in module selenium.webdriver.remote.webdriver:find_element(self, by='id', value=None)
Find an element given a By strategy and locator. Prefer the find_element_by_* methods when
possible.
:Usage:
element = driver.find_element(By.ID, 'foo')
:rtype: WebElement
以上是 请问python库函数介绍哪里可以看? 的全部内容, 来源链接: utcz.com/a/159434.html