博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1.02-get-params
阅读量:5361 次
发布时间:2019-06-15

本文共 881 字,大约阅读时间需要 2 分钟。

import urllib.requestimport urllib.parseimport stringdef get_method_params():    url = "http://www.baidu.com/s?wd="    #拼接字符串(汉字)    #python可以接受的数据    #https://www.baidu.com/s?wd=%E7%BE%8E%E5%A5%B3    name = "美女"    final_url = url+name    print(final_url)    #代码发送了请求    #网址里面包含了汉字;ascii是没有汉字的;url转译    #将包含汉字的网址进行转译    encode_new_url = urllib.parse.quote(final_url,safe=string.printable)    print(encode_new_url)    # 使用代码发送网络请求    response = urllib.request.urlopen(encode_new_url)    print(response)    #读取内容    data = response.read().decode()    print(data)    #保存到本地    with open("02-encode.html","w",encoding="utf-8")as f:        f.write(data)    #UnicodeEncodeError: 'ascii' codec can't encode    # characters in position 10-11: ordinal not in range(128)    #python:是解释性语言;解析器只支持 ascii 0 - 127    #不支持中文get_method_params()

 

转载于:https://www.cnblogs.com/hankleo/p/10591218.html

你可能感兴趣的文章
Java 将指定字符串连接到此字符串的结尾 concat()
查看>>
Hibernate Criterion
查看>>
Python知识
查看>>
我们为什么要搞长沙.NET技术社区(三)
查看>>
杭电acm Cake
查看>>
js函数中this的指向
查看>>
c++ 引用方式传递数组
查看>>
HBase学习之路 (九)HBase phoenix的使用
查看>>
LeetCode() Remove Duplicates from Sorted Array II
查看>>
【svn】idea svn 文件上会出现一个破书
查看>>
cocos2d-x 3.0 场景切换特效汇总(转)
查看>>
The SortedMap Interface
查看>>
SniperOJ-leak-x86-64
查看>>
bzoj 4260: Codechef REBXOR (01 Trie)
查看>>
学好python
查看>>
css-IE中的border-radius和box-shadow
查看>>
利用bootstrap和webform的异步CRUD及分页
查看>>
HDUOJ 1879继续畅通工程(并查集)
查看>>
OC12_自动释放池
查看>>
Saiku资源帖
查看>>