多选题使用urllib库定制http请求参数中的user-agent的方法是( )。多选题使用Requests库爬取web页面时,最常用的方法是( )。多选题设计爬取Web页面的简单程序时,通常的步骤是( )。判断题下列选项中,( )是对Python中Requests的正确描述。多选题Python库Requests是一个可用于( )的工具库。多选题使用Requests发出请求后,为了确保能够正确获得响应,通常会使用一个函数进行验证,这个函数是( )。多选题使用urllib库发起http请求(post方法)时,下列用法正确的语句是( )。多选题下列代码中,使用了requests的Session对象,并调用prepare_request()为使prepped为赋值。有关Prepped这个对象的作用,下列描述最为符合的是( )。from requests import Request, Sessions = Session()req = Request('GET', url, data=data, headers=headers)prepped = s.prepare_request(req)# do something with prepped.bodyprepped.body = 'Seriously, send exactly these bytes.'# do something with prepped.headersprepped.headers['Keep-Dead'] = 'parrot'resp = s.send(prepped, stream=stream, verify=verify, proxies=proxies, cert=cert, timeout=timeout)print(resp.status_code)多选题python中有一个自带的http工具库,它是( )。多选题使用requests.post()方法发送http请求时,可以对参数( )进行赋值,向服务器传递表单参数。判断题urllib库包含了多个子package,用于处理http请求、响应、url编码、错误异常等,它们是( )。多选题使用urllib库发起http请求(get方法)时,下列用法正确的语句是( )。多选题使用urllib处理异常时通常要引入( )这个package。多选题下列代码是为了完成( )操作。payload = {'key1': 'value1', 'key2': 'value2'}r = requests.post("http://httpbin.org/post", data=payload)print(r.text)多选题使用requests.get()方法发送http请求时,可以对参数( )进行赋值,向服务器传递url参数。多选题使用requests爬取页面时,为了保存用户cookie可以使用下列哪个对象( )。多选题Requests库在实现Cookie管理时需要使用( )存放Cookie。