python中quote函数是什么意思,怎么用

2020-05-30 教育 180阅读
这个函数的说明如下: 
urllib.quote(string[, safe])¶
Replace special characters in string using the %xx escape. Letters, digits, and the characters '_.-' are never quoted. By default, this function is intended for quoting the path section of the URL. The optional safe parameter specifies additional characters that should not be quoted — its default value is '/'.
Example: quote('/~connolly/') yields '/%7econnolly/'.

大概的意思就是: 用 %xx 替换字符串中的特殊字符, 主要用来替换URL中的路径分隔符;因为在URL标准中有的字符不允许编码在URL中, 如果希望使用其他字符就需要进行编码。

希望对你有帮助

声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com