python3处理含有中文的url方法

时间:2022-10-24 08:09:34

如下所示:

?
1
2
3
4
5
6
from urllib.parse import quote
import string
 
url = r'http://www.xxxx.com/name=中文'
url = quote(url, safe = string.printable) # safe表示可以忽略的字符
print(url)

运行结果如下:

python3处理含有中文的url方法

以上这篇python3处理含有中文的url方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/ten_sory/article/details/71023479