当前位置:主页 > 软件编程 > Python代码 >
时间: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)
运行结果如下: