如何查找答案:
1.all属性是这个模块可供调用的属性:
>>> timeit.__all__
['Timer', 'timeit', 'repeat', 'default_timer']
>>>
file属性是源代码位置
>>> timeit.__file__
'C:\\Python36\\lib\\timeit.py'
>>>
print(timeit.__doc__)打开介绍文档
网络爬虫:urllib包
1.URL:网页地址
>>> import urllib.request
>>> response = urllib.request.urlopen("http://www.fishc.com")
>>> html = response.read()
>>> print(html)
>>> html = html.decode("utf-8")
>>> print(html)
打印网页源码
2.F12查看审查元素,gson轻量级的数据交换格式
3.实现有道翻译的爬取;
import urllib.request
import urllib.parse