平时做爬虫时不免接触到url编码与解码相关的一些东西,这里姐做一下总结,供自己以后查阅使用,如果能帮到大家,那就甚是兴奋了!
from urllib
.parse
import quote
,unquote
text
= "丽江"
print(quote
(text
,'utf-8'))
str1
= "数据挖掘"
print(unquote
(str1
,'utf-8'))
print(unquote
(str1
,'GBK'))
转载请注明原文地址: https://yun.8miu.com/read-18412.html