python对中文URL的转码和解码

from urllib import parse str = '中国' print(parse.quote(str)) # 对中文进行编码 print(parse.unquote(parse.quote(str))) # 进行解码操作 # 输出结果: # %E4%B8%AD%E5%9B%BD # 中国原文链接:https://blog.csdn.net/u014663232/art

- 阅读全文 -