Python基础知识

python字符串的常用操作方法小结   一、基础 import urllib.request response = urllib.request.urlopen('http://www.baidu.com/') html = response.read() print(html)   urlopen参数可以传入一个request请求,它其实就是一个Request类的实例 import
相关文章
相关标签/搜索