当前位置:主页 > 软件编程 > Python代码 >

python3处理含有中文的url方法

时间:2022-05-13 13:50:49 | 栏目:Python代码 | 点击:

如下所示:

from urllib.parse import quote
import string

url = r'http://www.xxxx.com/name=中文'
url = quote(url, safe = string.printable) # safe表示可以忽略的字符
print(url)

运行结果如下:

您可能感兴趣的文章:

相关文章